summaryrefslogtreecommitdiff
path: root/python/test/Slice/escape/Client.py
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2017-02-10 10:38:44 +0100
committerJose <jose@zeroc.com>2017-02-10 10:38:44 +0100
commit24e4a7e926c8ef99bf531c1576b940fb1b1c42d1 (patch)
treea8952b230126a983b7db08fce316124612169018 /python/test/Slice/escape/Client.py
parentFixed ICE-7554 - Ice/ami failure on macOS (diff)
downloadice-24e4a7e926c8ef99bf531c1576b940fb1b1c42d1.tar.bz2
ice-24e4a7e926c8ef99bf531c1576b940fb1b1c42d1.tar.xz
ice-24e4a7e926c8ef99bf531c1576b940fb1b1c42d1.zip
Fix (ICE-7562) - Eliminate class-with-operation deprecated warnings
Diffstat (limited to 'python/test/Slice/escape/Client.py')
-rwxr-xr-xpython/test/Slice/escape/Client.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/python/test/Slice/escape/Client.py b/python/test/Slice/escape/Client.py
index 882e9739329..1d91d29d434 100755
--- a/python/test/Slice/escape/Client.py
+++ b/python/test/Slice/escape/Client.py
@@ -32,10 +32,6 @@ class execI(_and._execDisp):
def _finally(self, current=None):
assert current.operation == "finally"
-class forI(_and._forDisp):
- def foo(self, _from, current=None):
- pass
-
class ifI(_and._ifDisp):
def _elifAsync(self, _else, current=None):
pass
@@ -61,7 +57,7 @@ def testtypes():
assert "_finally" in dir(_and.execPrx)
d1 = execI()
- e1 = forI()
+ e1 = _and._for()
f = _and.ifPrx.uncheckedCast(None)
assert "_finally" in dir(_and.ifPrx)