Repository: tinkerpop Updated Branches: refs/heads/TRAVIS-TEST a179467fc -> cdaab2f92
foo Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/cdaab2f9 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/cdaab2f9 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/cdaab2f9 Branch: refs/heads/TRAVIS-TEST Commit: cdaab2f92b8711902e7d94ab60778a4037d228f1 Parents: a179467 Author: Daniel Kuppitz <[email protected]> Authored: Mon Mar 12 09:20:02 2018 -0700 Committer: Daniel Kuppitz <[email protected]> Committed: Mon Mar 12 09:20:02 2018 -0700 ---------------------------------------------------------------------- .../traversal/strategy/decoration/SubgraphStrategyProcessTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/cdaab2f9/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/SubgraphStrategyProcessTest.java ---------------------------------------------------------------------- diff --git a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/SubgraphStrategyProcessTest.java b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/SubgraphStrategyProcessTest.java index 0376540..0eccc4f 100644 --- a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/SubgraphStrategyProcessTest.java +++ b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/SubgraphStrategyProcessTest.java @@ -297,7 +297,7 @@ try { throw new IllegalStateException(t.toString(), ex); } */ -final Traversal<Vertex, Vertex> t = sg.withPath().V(convertToVertexId("josh")).bothE().otherV(); +final Traversal<Vertex, Vertex> t = sg.withPath().V(convertToVertexId("josh")).union(outE().inV(), inE().outV()); try { assertEquals(2, t.toList().size()); } catch (Exception ex) {
