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/09/09 18:33:00 UTC

[16/33] incubator-tinkerpop git commit: Drop duplicate asserts in PartitionStrategyProcessTest.

Drop duplicate asserts in PartitionStrategyProcessTest.


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

Branch: refs/heads/hadoop_split
Commit: 9be5313dbc9d1b050e519c891ca3a78002e91e01
Parents: 0dd8e18
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Tue Sep 8 13:58:11 2015 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Tue Sep 8 13:58:11 2015 -0400

----------------------------------------------------------------------
 .../strategy/decoration/PartitionStrategyProcessTest.java     | 7 -------
 1 file changed, 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/9be5313d/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/PartitionStrategyProcessTest.java
----------------------------------------------------------------------
diff --git a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/PartitionStrategyProcessTest.java b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/PartitionStrategyProcessTest.java
index b48a7fc..f0d5e27 100644
--- a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/PartitionStrategyProcessTest.java
+++ b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/PartitionStrategyProcessTest.java
@@ -127,13 +127,6 @@ public class PartitionStrategyProcessTest extends AbstractGremlinProcessTest {
         assertThat(gOverB.V(v).values("any").hasNext(), is(false));
         assertThat(gOverB.V(v).values("that").hasNext(), is(false));
 
-        assertThat(gOverAB.V(v).values("any").hasNext(), is(true));
-        assertThat(gOverAB.V(v).values("that").hasNext(), is(true));
-        assertThat(gOverA.V(v).values("that").hasNext(), is(false));
-        assertThat(gOverA.V(v).values("any").hasNext(), is(true));
-        assertThat(gOverB.V(v).values("any").hasNext(), is(false));
-        assertThat(gOverB.V(v).values("that").hasNext(), is(false));
-
         assertThat(gOverAB.V(v).propertyMap().next().containsKey("any"), is(true));
         assertThat(gOverAB.V(v).propertyMap().next().containsKey("that"), is(true));
         assertThat(gOverA.V(v).propertyMap().next().containsKey("that"), is(false));