diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-09-16 11:22:03 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-09-19 14:50:12 +0200 |
commit | 909675f8719fa76245727f681a8ab80f04041f95 (patch) | |
tree | d3f9a13fa561ee764e559a172f7b40b06836a119 /python/test | |
parent | Fix typo (diff) | |
download | ice-909675f8719fa76245727f681a8ab80f04041f95.tar.bz2 ice-909675f8719fa76245727f681a8ab80f04041f95.tar.xz ice-909675f8719fa76245727f681a8ab80f04041f95.zip |
Fixed ICE-7317 - timeout test failure
Diffstat (limited to 'python/test')
-rw-r--r-- | python/test/Ice/timeout/AllTests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/test/Ice/timeout/AllTests.py b/python/test/Ice/timeout/AllTests.py index ea5e685dafe..fd90bdad679 100644 --- a/python/test/Ice/timeout/AllTests.py +++ b/python/test/Ice/timeout/AllTests.py @@ -248,10 +248,10 @@ def allTests(communicator): initData.properties.setProperty("Ice.Override.CloseTimeout", "100") comm = Ice.initialize(initData) connection = comm.stringToProxy(sref).ice_getConnection(); - timeout.holdAdapter(500); + timeout.holdAdapter(800); now = time.clock(); comm.destroy(); - test((time.clock() - now) < 0.4); + test((time.clock() - now) < 0.7); print("ok") |