You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by tw...@apache.org on 2017/01/27 22:55:58 UTC

tinkerpop git commit: Update to test to account for new OptionalStep CTR

Repository: tinkerpop
Updated Branches:
  refs/heads/master 4917d8870 -> f7f0bc40f


Update to test to account for new OptionalStep CTR


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/f7f0bc40
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/f7f0bc40
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/f7f0bc40

Branch: refs/heads/master
Commit: f7f0bc40f383a3acd51fc762cbc8946f630ad50f
Parents: 4917d88
Author: Ted Wilmes <tw...@gmail.com>
Authored: Fri Jan 27 16:55:40 2017 -0600
Committer: Ted Wilmes <tw...@gmail.com>
Committed: Fri Jan 27 16:55:40 2017 -0600

----------------------------------------------------------------------
 .../strategy/optimization/PathRetractionStrategyTest.java          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/f7f0bc40/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/optimization/PathRetractionStrategyTest.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/optimization/PathRetractionStrategyTest.java b/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/optimization/PathRetractionStrategyTest.java
index 2f99fd2..8756fbc 100644
--- a/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/optimization/PathRetractionStrategyTest.java
+++ b/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/optimization/PathRetractionStrategyTest.java
@@ -190,7 +190,7 @@ public class PathRetractionStrategyTest {
                         "[[[z, seen]], [[z, seen]]]", null},
                 {__.V().as("a").optional(bothE().dedup().as("b")).
                         choose(select("b"), select("a","b"), project("a").by(select("a"))),
-                        "[[[a, b]], [[a, b]], [[a, b]], [[[a, b]]], [[a, b]]]", null},
+                        "[[[a, b]], [[a, b]], [[[a, b]]], [[a, b]]]", null},
         });
     }
 }