diff options
Diffstat (limited to 'python/test/Ice/operations/TestI.py')
-rw-r--r-- | python/test/Ice/operations/TestI.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/python/test/Ice/operations/TestI.py b/python/test/Ice/operations/TestI.py index 0a3b39966ff..04ef6f468ed 100644 --- a/python/test/Ice/operations/TestI.py +++ b/python/test/Ice/operations/TestI.py @@ -13,26 +13,26 @@ def test(b): if not b: raise RuntimeError('test assertion failed') -class MyDerivedClassI(Test._MyDerivedClassDisp): +class MyDerivedClassI(Test.MyDerivedClass): def __init__(self): self.lock = threading.Lock() self.opByteSOnewayCount = 0 def ice_isA(self, id, current=None): test(current.mode == Ice.OperationMode.Nonmutating) - return Test._MyDerivedClassDisp.ice_isA(self, id, current) + return Test.MyDerivedClass.ice_isA(self, id, current) def ice_ping(self, current=None): test(current.mode == Ice.OperationMode.Nonmutating) - Test._MyDerivedClassDisp.ice_ping(self, current) + Test.MyDerivedClass.ice_ping(self, current) def ice_ids(self, current=None): test(current.mode == Ice.OperationMode.Nonmutating) - return Test._MyDerivedClassDisp.ice_ids(self, current) + return Test.MyDerivedClass.ice_ids(self, current) def ice_id(self, current=None): test(current.mode == Ice.OperationMode.Nonmutating) - return Test._MyDerivedClassDisp.ice_id(self, current) + return Test.MyDerivedClass.ice_id(self, current) def shutdown(self, current=None): current.adapter.getCommunicator().shutdown() |