diff options
Diffstat (limited to 'py/test/Ice/operations/ServerAMD.py')
-rw-r--r-- | py/test/Ice/operations/ServerAMD.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/py/test/Ice/operations/ServerAMD.py b/py/test/Ice/operations/ServerAMD.py index 32609fe07f3..efedfc29c3a 100644 --- a/py/test/Ice/operations/ServerAMD.py +++ b/py/test/Ice/operations/ServerAMD.py @@ -97,7 +97,7 @@ class MyDerivedClassI(Test.MyDerivedClass): cb.ice_response(p2, p1) def opByteS_async(self, cb, p1, p2, current=None): - # By default sequence<byte> maps to a string. + # By default sequence<byte> maps to a string. p3 = map(ord, p1) p3.reverse() r = map(ord, p1) @@ -219,14 +219,14 @@ class MyDerivedClassI(Test.MyDerivedClass): class TestCheckedCastI(Test.TestCheckedCast): def __init__(self): - self.ctx = None + self.ctx = None def getContext(self, current): - return self.ctx; + return self.ctx; def ice_isA(self, s, current): - self.ctx = current.ctx - return Test.TestCheckedCast.ice_isA(self, s, current) + self.ctx = current.ctx + return Test.TestCheckedCast.ice_isA(self, s, current) def run(args, communicator): communicator.getProperties().setProperty("Ice.OA.TestAdapter.Endpoints", "default -p 12010 -t 10000:udp") |