diff options
author | Jose <jose@zeroc.com> | 2017-02-10 10:38:44 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-02-10 10:38:44 +0100 |
commit | 24e4a7e926c8ef99bf531c1576b940fb1b1c42d1 (patch) | |
tree | a8952b230126a983b7db08fce316124612169018 /python/test/Slice/escape/Client.py | |
parent | Fixed ICE-7554 - Ice/ami failure on macOS (diff) | |
download | ice-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-x | python/test/Slice/escape/Client.py | 6 |
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) |