summaryrefslogtreecommitdiff
path: root/python/test/Ice/operations/OnewaysAMI.py
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2018-08-14 20:02:53 +0200
committerJose <jose@zeroc.com>2018-08-14 20:03:24 +0200
commit7d722e7eb41abd0147458c72285f6fea706c980e (patch)
tree3d7d1884d6fccfd8a44ab9dabb8d833813aee846 /python/test/Ice/operations/OnewaysAMI.py
parentFixed icehashpassword deprecation warning with python debug (diff)
downloadice-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/operations/OnewaysAMI.py')
-rw-r--r--python/test/Ice/operations/OnewaysAMI.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/test/Ice/operations/OnewaysAMI.py b/python/test/Ice/operations/OnewaysAMI.py
index 5c5a134be0d..05e00f8a89f 100644
--- a/python/test/Ice/operations/OnewaysAMI.py
+++ b/python/test/Ice/operations/OnewaysAMI.py
@@ -36,8 +36,8 @@ class Callback(CallbackBase):
def noException(self, ex):
test(False)
-def onewaysAMI(communicator, proxy):
-
+def onewaysAMI(helper, proxy):
+ communicator = helper.communicator()
p = Test.MyClassPrx.uncheckedCast(proxy.ice_oneway())
cb = Callback()