You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by dk...@apache.org on 2015/05/11 13:43:47 UTC

[16/50] [abbrv] incubator-tinkerpop git commit: Fixed bug in traversal in test - not written as expected.

Fixed bug in traversal in test - not written as expected.


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

Branch: refs/heads/TINKERPOP3-666
Commit: 083afee0c91228823b5e0970be24647152297366
Parents: f919ad2
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Fri May 8 11:41:29 2015 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Fri May 8 11:41:29 2015 -0400

----------------------------------------------------------------------
 .../gremlin/process/traversal/step/branch/GroovyLocalTest.groovy   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/083afee0/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/process/traversal/step/branch/GroovyLocalTest.groovy
----------------------------------------------------------------------
diff --git a/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/process/traversal/step/branch/GroovyLocalTest.groovy b/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/process/traversal/step/branch/GroovyLocalTest.groovy
index a929cd3..d698403 100644
--- a/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/process/traversal/step/branch/GroovyLocalTest.groovy
+++ b/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/process/traversal/step/branch/GroovyLocalTest.groovy
@@ -78,7 +78,7 @@ public abstract class GroovyLocalTest {
 
         @Override
         public Traversal<Vertex, String> get_g_VX4X_localXbothE_limitX2XX_otherV_name(final Object v4Id) {
-            g.V(v4Id).local(__.bothE.limit(2).otherV).name
+            g.V(v4Id).local(__.bothE.limit(2)).otherV.name
         }
 
         @Override