diff options
author | Jose <jose@zeroc.com> | 2018-08-15 02:28:55 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-08-15 02:28:55 +0200 |
commit | 73f0855fc34325480677162d64b35a5088a8dffa (patch) | |
tree | b9ebbb0b775d7eadc4b4cc45ae1ce95d349c4c0e /python/test | |
parent | Fixes to allow run JavaScript and Python tests with workers (diff) | |
download | ice-73f0855fc34325480677162d64b35a5088a8dffa.tar.bz2 ice-73f0855fc34325480677162d64b35a5088a8dffa.tar.xz ice-73f0855fc34325480677162d64b35a5088a8dffa.zip |
Fix python Slice/escape test failure running with workers
Diffstat (limited to 'python/test')
-rwxr-xr-x | python/test/Slice/escape/Client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/test/Slice/escape/Client.py b/python/test/Slice/escape/Client.py index 915030fbe25..3606d924c06 100755 --- a/python/test/Slice/escape/Client.py +++ b/python/test/Slice/escape/Client.py @@ -83,7 +83,7 @@ class Client(TestHelper): # properties.setProperty("Ice.Warn.Dispatch", "0") with self.initialize(properties=properties) as communicator: - communicator.getProperties().setProperty("TestAdapter.Endpoints", self.getTestEndpoint()) + communicator.getProperties().setProperty("TestAdapter.Endpoints", "default") adapter = communicator.createObjectAdapter("TestAdapter") adapter.add(execI(), Ice.stringToIdentity("test")) adapter.activate() |