You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2015/04/15 16:25:56 UTC

incubator-tinkerpop git commit: Cleaned up discrepancy with PathTest for enforcement purposes.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master 05616f21a -> 0f4fb31d6


Cleaned up discrepancy with PathTest for enforcement purposes.

There were two tests named PathTest and one was enforceable and the other not.


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

Branch: refs/heads/master
Commit: 0f4fb31d6c9ec43db0b8cbb61df3a7df606e0c39
Parents: 05616f2
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Wed Apr 15 10:25:21 2015 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Wed Apr 15 10:25:21 2015 -0400

----------------------------------------------------------------------
 .../apache/tinkerpop/gremlin/process/ProcessStandardSuite.java    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/0f4fb31d/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/ProcessStandardSuite.java
----------------------------------------------------------------------
diff --git a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/ProcessStandardSuite.java b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/ProcessStandardSuite.java
index 3124588..f056d2e 100644
--- a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/ProcessStandardSuite.java
+++ b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/ProcessStandardSuite.java
@@ -161,6 +161,7 @@ public class ProcessStandardSuite extends AbstractGremlinSuite {
 
             // util
             TraversalSideEffectsTest.Traversals.class,
+            org.apache.tinkerpop.gremlin.process.traversal.step.util.PathTest.class,
 
             // compliance
             CoreTraversalTest.class,
@@ -222,7 +223,7 @@ public class ProcessStandardSuite extends AbstractGremlinSuite {
             MinTest.class,
             SumTest.class,
             OrderTest.class,
-            PathTest.class,
+            org.apache.tinkerpop.gremlin.process.traversal.step.map.PathTest.class,   // note that there are two PathTest in this suite - only one is enforce
             PropertiesTest.class,
             SelectTest.class,
             VertexTest.class,