Browse Source

multiprops not in leaf are disallowed at the moment

pull/142/head
Alexey Makeyev 9 years ago
parent
commit
f2d2a25744
  1. 2
      json-path/src/test/java/com/jayway/jsonpath/PathTokenTest.java

2
json-path/src/test/java/com/jayway/jsonpath/PathTokenTest.java

@ -19,7 +19,7 @@ public class PathTokenTest extends BaseTest {
assertThat(makePathReturningTail(makePPT("foo"), makePPT("bar")).isUpstreamDefinite()).isTrue();
assertThat(makePathReturningTail(makePPT("foo", "foo2"), makePPT("bar")).isUpstreamDefinite()).isFalse();
// assertThat(makePathReturningTail(makePPT("foo", "foo2"), makePPT("bar")).isUpstreamDefinite()).isFalse();
assertThat(makePathReturningTail(new WildcardPathToken(), makePPT("bar")).isUpstreamDefinite()).isFalse();

Loading…
Cancel
Save