From 7e4e04d739dbbbc5fbe5fb32f94e7c7681b5fc1e Mon Sep 17 00:00:00 2001 From: Jack Singleton Date: Wed, 10 Jul 2013 12:19:37 -0700 Subject: [PATCH] Removed test for issue 7 which is in conflict with new behavior --- .../test/java/com/jayway/jsonpath/IssuesTest.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/json-path/src/test/java/com/jayway/jsonpath/IssuesTest.java b/json-path/src/test/java/com/jayway/jsonpath/IssuesTest.java index 20e4fd5b..dd44daa5 100644 --- a/json-path/src/test/java/com/jayway/jsonpath/IssuesTest.java +++ b/json-path/src/test/java/com/jayway/jsonpath/IssuesTest.java @@ -15,18 +15,6 @@ import static junit.framework.Assert.assertTrue; * Time: 8:42 AM */ public class IssuesTest { - @Test - public void issue_7() throws Exception { - - String json = "{ \"foo\" : [\n" + - " { \"id\": 1 }, \n" + - " { \"id\": 2 }, \n" + - " { \"id\": 3 }\n" + - " ] }"; - - - assertNull(JsonPath.read(json, "$.foo.id")); - } @Test public void issue_11() throws Exception {