diff options
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) |