summaryrefslogtreecommitdiff
path: root/ruby/test
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2016-09-16 11:22:03 +0200
committerBenoit Foucher <benoit@zeroc.com>2016-09-19 14:50:12 +0200
commit909675f8719fa76245727f681a8ab80f04041f95 (patch)
treed3f9a13fa561ee764e559a172f7b40b06836a119 /ruby/test
parentFix typo (diff)
downloadice-909675f8719fa76245727f681a8ab80f04041f95.tar.bz2
ice-909675f8719fa76245727f681a8ab80f04041f95.tar.xz
ice-909675f8719fa76245727f681a8ab80f04041f95.zip
Fixed ICE-7317 - timeout test failure
Diffstat (limited to 'ruby/test')
-rw-r--r--ruby/test/Ice/timeout/AllTests.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/ruby/test/Ice/timeout/AllTests.rb b/ruby/test/Ice/timeout/AllTests.rb
index 72c717ae2a5..05746528fc6 100644
--- a/ruby/test/Ice/timeout/AllTests.rb
+++ b/ruby/test/Ice/timeout/AllTests.rb
@@ -198,10 +198,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.now
comm.destroy();
- test((Time.now - now) < 0.4);
+ test((Time.now - now) < 0.7);
puts "ok"