CTR: removed hard-coded number of workers setting in Gremlin Python test

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

Branch: refs/heads/TINKERPOP-1534
Commit: 333f2ab677bfb3e2ec35f1fb0123ec30eec248e3
Parents: 1eac35b
Author: Daniel Kuppitz <daniel_kupp...@hotmail.com>
Authored: Tue Nov 1 17:04:57 2016 +0100
Committer: Daniel Kuppitz <daniel_kupp...@hotmail.com>
Committed: Tue Nov 1 17:04:57 2016 +0100

----------------------------------------------------------------------
 .../src/main/jython/tests/driver/test_driver_remote_connection.py  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/333f2ab6/gremlin-python/src/main/jython/tests/driver/test_driver_remote_connection.py
----------------------------------------------------------------------
diff --git 
a/gremlin-python/src/main/jython/tests/driver/test_driver_remote_connection.py 
b/gremlin-python/src/main/jython/tests/driver/test_driver_remote_connection.py
index 46fb3bc..6921837 100644
--- 
a/gremlin-python/src/main/jython/tests/driver/test_driver_remote_connection.py
+++ 
b/gremlin-python/src/main/jython/tests/driver/test_driver_remote_connection.py
@@ -85,7 +85,7 @@ class TestDriverRemoteConnection(TestCase):
         assert "person" == g.V().label().dedup().next()
         #
         g = g.withoutStrategies(SubgraphStrategy). \
-            withComputer(workers=4, vertices=__.has("name", "marko"), 
edges=__.limit(0))
+            withComputer(vertices=__.has("name", "marko"), edges=__.limit(0))
         assert 1 == g.V().count().next()
         assert 0 == g.E().count().next()
         assert "person" == g.V().label().next()

Reply via email to