diff options
author | Jose <jose@zeroc.com> | 2018-08-14 20:02:53 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-08-14 20:03:24 +0200 |
commit | 7d722e7eb41abd0147458c72285f6fea706c980e (patch) | |
tree | 3d7d1884d6fccfd8a44ab9dabb8d833813aee846 /python/test/Ice/scope/Server.py | |
parent | Fixed icehashpassword deprecation warning with python debug (diff) | |
download | ice-7d722e7eb41abd0147458c72285f6fea706c980e.tar.bz2 ice-7d722e7eb41abd0147458c72285f6fea706c980e.tar.xz ice-7d722e7eb41abd0147458c72285f6fea706c980e.zip |
Fixes to allow run JavaScript and Python tests with workers
Diffstat (limited to 'python/test/Ice/scope/Server.py')
-rwxr-xr-x | python/test/Ice/scope/Server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/test/Ice/scope/Server.py b/python/test/Ice/scope/Server.py index 9d708d843d4..529b8c42ac3 100755 --- a/python/test/Ice/scope/Server.py +++ b/python/test/Ice/scope/Server.py @@ -114,7 +114,7 @@ class I4(Inner.Test.Inner2.I): 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") adapter.add(I1(), Ice.stringToIdentity("i1")) |