diff options
Diffstat (limited to 'python/test/Ice/operations/TwowaysFuture.py')
-rw-r--r-- | python/test/Ice/operations/TwowaysFuture.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/python/test/Ice/operations/TwowaysFuture.py b/python/test/Ice/operations/TwowaysFuture.py index 86e4c86077c..70279725bb1 100644 --- a/python/test/Ice/operations/TwowaysFuture.py +++ b/python/test/Ice/operations/TwowaysFuture.py @@ -898,7 +898,8 @@ class Callback(CallbackBase): def opDerived(self, f): self.called() -def twowaysFuture(communicator, p): +def twowaysFuture(helper, p): + communicator = helper.communicator() f = p.ice_pingAsync() test(f.result() is None) @@ -1271,7 +1272,7 @@ def twowaysFuture(communicator, p): ctx = {'one': 'ONE', 'two': 'TWO', 'three': 'THREE'} - p3 = Test.MyClassPrx.uncheckedCast(ic.stringToProxy("test:default -p 12010")) + p3 = Test.MyClassPrx.uncheckedCast(ic.stringToProxy("test:{0}".format(helper.getTestEndpoint()))) ic.getImplicitContext().setContext(ctx) test(ic.getImplicitContext().getContext() == ctx) |