diff options
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") |