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/02/20 20:24:52 UTC

incubator-tinkerpop git commit: Removed graph computer hack in test now that the process test suites are working.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master a384ee1f6 -> 7c9829258


Removed graph computer hack in test now that the process test suites are working.


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

Branch: refs/heads/master
Commit: 7c98292587612c4236b7a63087787125b26a43a6
Parents: a384ee1
Author: Stephen Mallette <sp...@apache.org>
Authored: Fri Feb 20 14:24:16 2015 -0500
Committer: Stephen Mallette <sp...@apache.org>
Committed: Fri Feb 20 14:24:16 2015 -0500

----------------------------------------------------------------------
 .../apache/tinkerpop/gremlin/structure/GraphConstructionTest.java   | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/7c982925/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/GraphConstructionTest.java
----------------------------------------------------------------------
diff --git a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/GraphConstructionTest.java b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/GraphConstructionTest.java
index 1cf6b1e..82c6e25 100644
--- a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/GraphConstructionTest.java
+++ b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/structure/GraphConstructionTest.java
@@ -65,7 +65,6 @@ public class GraphConstructionTest extends AbstractGremlinTest {
     @Test
     public void shouldMaintainOriginalConfigurationObjectGivenToFactory() {
         final Configuration originalConfig = graphProvider.newGraphConfiguration("temp2", this.getClass(), name.getMethodName());
-        originalConfig.clearProperty("computer"); // TODO: Necessary cause of HACK.
         final Graph createdGraph = GraphFactory.open(originalConfig);
 
         final Configuration configInGraph = createdGraph.configuration();