diff options
Diffstat (limited to 'py/test/Ice/retry/TestI.py')
-rw-r--r-- | py/test/Ice/retry/TestI.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/test/Ice/retry/TestI.py b/py/test/Ice/retry/TestI.py index d1c3e32fee4..c646ff9403f 100644 --- a/py/test/Ice/retry/TestI.py +++ b/py/test/Ice/retry/TestI.py @@ -13,8 +13,8 @@ import Ice, Test class RetryI(Test.Retry): def op(self, kill, current=None): - if kill: - current.con.close(True) + if kill: + current.con.close(True) def shutdown(self, current=None): current.adapter.getCommunicator().shutdown() |