diff options
Diffstat (limited to 'py/test/Ice/retry/AllTests.py')
-rw-r--r-- | py/test/Ice/retry/AllTests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/test/Ice/retry/AllTests.py b/py/test/Ice/retry/AllTests.py index 05504f1e1a7..2e2d3762bb6 100644 --- a/py/test/Ice/retry/AllTests.py +++ b/py/test/Ice/retry/AllTests.py @@ -56,7 +56,7 @@ class AMIException(CallbackBase): test(False) def ice_exception(self, ex): - test(isinstance(ex, Ice.ConnectionLostException)) + test(isinstance(ex, Ice.ConnectionLostException)) self.called() def allTests(communicator): @@ -84,7 +84,7 @@ def allTests(communicator): print "calling operation to kill connection with second proxy...", try: retry2.op(True) - test(False) + test(False) except Ice.ConnectionLostException: print "ok" |