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/05/14 22:37:18 UTC

incubator-tinkerpop git commit: had a commented out assert() when figuring out a bug in Spark. Uncommented. All good.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master db18ad07d -> 23ee03840


had a commented out assert() when figuring out a bug in Spark. Uncommented. All good.


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

Branch: refs/heads/master
Commit: 23ee03840d36e3e117613670aa881dc1c7dfb0db
Parents: db18ad0
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Thu May 14 14:37:14 2015 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Thu May 14 14:37:14 2015 -0600

----------------------------------------------------------------------
 .../tinkerpop/gremlin/process/computer/GraphComputerTest.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/23ee0384/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/computer/GraphComputerTest.java
----------------------------------------------------------------------
diff --git a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/computer/GraphComputerTest.java b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/computer/GraphComputerTest.java
index 0b5f135..8df6a36 100644
--- a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/computer/GraphComputerTest.java
+++ b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/computer/GraphComputerTest.java
@@ -1043,7 +1043,7 @@ public class GraphComputerTest extends AbstractGremlinProcessTest {
 
         @Override
         public void workerIterationStart(final Memory memory) {
-//            assertEquals(memory.getIteration(), memory.<Integer>get("test").intValue());
+            assertEquals(memory.getIteration(), memory.<Integer>get("test").intValue());
             final long time = System.nanoTime();
             if (!memory.isInitialIteration())
                 assertNotEquals(-1l, TIMER_KEEPER.get());