summaryrefslogtreecommitdiff
path: root/python/test
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2018-08-15 09:01:24 +0200
committerJose <jose@zeroc.com>2018-08-15 09:03:34 +0200
commitc935484f8a997505a75f9796eb4d78563a414adf (patch)
tree34d7deac6fb6a70e4a601e58429f0d9b0b534bc1 /python/test
parentFix python Slice/escape test failure running with workers (diff)
downloadice-c935484f8a997505a75f9796eb4d78563a414adf.tar.bz2
ice-c935484f8a997505a75f9796eb4d78563a414adf.tar.xz
ice-c935484f8a997505a75f9796eb4d78563a414adf.zip
Fix sockect exception in python binding test when running with workers
Diffstat (limited to 'python/test')
-rwxr-xr-xpython/test/Ice/binding/Client.py2
-rwxr-xr-xpython/test/Ice/binding/Server.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/python/test/Ice/binding/Client.py b/python/test/Ice/binding/Client.py
index 74b7105bf20..7de6a5226e8 100755
--- a/python/test/Ice/binding/Client.py
+++ b/python/test/Ice/binding/Client.py
@@ -17,5 +17,5 @@ class Client(TestHelper):
def run(self, args):
- with self.initialize(args) as communicator:
+ with self.initialize(args=args) as communicator:
AllTests.allTests(self, communicator)
diff --git a/python/test/Ice/binding/Server.py b/python/test/Ice/binding/Server.py
index c720f9919ac..ddec6ef0a34 100755
--- a/python/test/Ice/binding/Server.py
+++ b/python/test/Ice/binding/Server.py
@@ -18,7 +18,7 @@ class Server(TestHelper):
def run(self, args):
- with self.initialize(args) as communicator:
+ with self.initialize(args=args) as communicator:
communicator.getProperties().setProperty("TestAdapter.Endpoints", self.getTestEndpoint())
adapter = communicator.createObjectAdapter("TestAdapter")