summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2019-09-24 13:37:44 +0200
committerBenoit Foucher <benoit@zeroc.com>2019-09-24 15:33:14 +0200
commitf36869725c29a23a903a5533ff18c86c55092355 (patch)
treeb1630868a1932d3378dea4746eb135350134d1a8 /python
parentFix DK 13 build failures (diff)
downloadice-f36869725c29a23a903a5533ff18c86c55092355.tar.bz2
ice-f36869725c29a23a903a5533ff18c86c55092355.tar.xz
ice-f36869725c29a23a903a5533ff18c86c55092355.zip
Fix for invocation timeout sporadic test failure, fixes #547
Diffstat (limited to 'python')
-rw-r--r--python/test/Ice/timeout/AllTests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/test/Ice/timeout/AllTests.py b/python/test/Ice/timeout/AllTests.py
index e676e05dac6..3fde84b9f05 100644
--- a/python/test/Ice/timeout/AllTests.py
+++ b/python/test/Ice/timeout/AllTests.py
@@ -148,7 +148,7 @@ def allTestsWithController(helper, communicator, controller):
to = Test.TimeoutPrx.uncheckedCast(obj.ice_invocationTimeout(100))
test(connection == to.ice_getConnection())
try:
- to.sleep(500)
+ to.sleep(1000)
test(False)
except Ice.InvocationTimeoutException:
pass