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 2016/02/26 21:18:37 UTC

incubator-tinkerpop git commit: forgot to include update to ComputerVerificationStrategyTest.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1166 104496c06 -> ce89e3134


forgot to include update to ComputerVerificationStrategyTest.


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

Branch: refs/heads/TINKERPOP-1166
Commit: ce89e313462e206034712a192f063718de6da0ed
Parents: 104496c
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Fri Feb 26 13:18:34 2016 -0700
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Fri Feb 26 13:18:34 2016 -0700

----------------------------------------------------------------------
 .../strategy/verification/ComputerVerificationStrategyTest.java  | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/ce89e313/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/verification/ComputerVerificationStrategyTest.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/verification/ComputerVerificationStrategyTest.java b/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/verification/ComputerVerificationStrategyTest.java
index c579dcf..e229f8a 100644
--- a/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/verification/ComputerVerificationStrategyTest.java
+++ b/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/verification/ComputerVerificationStrategyTest.java
@@ -43,9 +43,7 @@ public class ComputerVerificationStrategyTest {
     public static Iterable<Object[]> data() {
         return Arrays.asList(new Object[][]{
                 {"__.out().union(__.out().count(),__.in().count())", __.out().union(__.out().count(), __.in().count())},
-                {"__.where(__.out().values(\"name\"))", __.where(__.out().values("name"))},
-                {"__.groupCount(\"a\").out().cap(\"a\").count()", __.groupCount("a").out().cap("a").count()},
-
+                {"__.where(__.out().values(\"name\"))", __.where(__.out().values("name"))}
         });
     }