diff options
author | Jose <jose@zeroc.com> | 2018-08-15 09:01:24 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-08-15 09:03:34 +0200 |
commit | c935484f8a997505a75f9796eb4d78563a414adf (patch) | |
tree | 34d7deac6fb6a70e4a601e58429f0d9b0b534bc1 /python | |
parent | Fix python Slice/escape test failure running with workers (diff) | |
download | ice-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')
-rwxr-xr-x | python/test/Ice/binding/Client.py | 2 | ||||
-rwxr-xr-x | python/test/Ice/binding/Server.py | 2 |
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") |