summaryrefslogtreecommitdiff
path: root/csharp/test/Ice/timeout/AllTests.cs
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 /csharp/test/Ice/timeout/AllTests.cs
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 'csharp/test/Ice/timeout/AllTests.cs')
-rw-r--r--csharp/test/Ice/timeout/AllTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/csharp/test/Ice/timeout/AllTests.cs b/csharp/test/Ice/timeout/AllTests.cs
index 3f5b4a5ba99..633f99e6920 100644
--- a/csharp/test/Ice/timeout/AllTests.cs
+++ b/csharp/test/Ice/timeout/AllTests.cs
@@ -180,7 +180,7 @@ namespace Ice
test(connection == to.ice_getConnection());
try
{
- to.sleep(500);
+ to.sleep(1000);
test(false);
}
catch(Ice.InvocationTimeoutException)
@@ -205,7 +205,7 @@ namespace Ice
//
Test.TimeoutPrx to = Test.TimeoutPrxHelper.uncheckedCast(obj.ice_invocationTimeout(100));
Callback cb = new Callback();
- to.begin_sleep(500).whenCompleted(
+ to.begin_sleep(1000).whenCompleted(
() =>
{
test(false);