You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ok...@apache.org on 2015/06/25 00:50:19 UTC

incubator-tinkerpop git commit: introduced a bug into GroovyDedupTest. Sorry -- fixed.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master 83d5f6590 -> 7b27da5ac


introduced a bug into GroovyDedupTest. Sorry -- fixed.


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

Branch: refs/heads/master
Commit: 7b27da5ac171644cc0d628a220db45eadd7823dd
Parents: 83d5f65
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Wed Jun 24 16:50:15 2015 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Wed Jun 24 16:50:15 2015 -0600

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


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/7b27da5a/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/process/traversal/step/filter/GroovyDedupTest.groovy
----------------------------------------------------------------------
diff --git a/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/process/traversal/step/filter/GroovyDedupTest.groovy b/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/process/traversal/step/filter/GroovyDedupTest.groovy
index 7931422..683d0ca 100644
--- a/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/process/traversal/step/filter/GroovyDedupTest.groovy
+++ b/gremlin-groovy-test/src/main/groovy/org/apache/tinkerpop/gremlin/process/traversal/step/filter/GroovyDedupTest.groovy
@@ -38,7 +38,7 @@ public abstract class GroovyDedupTest {
 
         @Override
         public Traversal<Vertex, Map<String, Set<Double>>> get_g_V_group_byXlabelX_byXbothE_valuesXweightX_foldX_byXdedupXlocalXX() {
-            TraversalScriptHelper.compute("g.V.group.by(label).by(bothE.weight.fold).by(dedup(local))", g);
+            TraversalScriptHelper.compute("g.V.group.by(label).by(__.bothE.weight.fold).by(dedup(local))", g);
         }
 
         @Override