diff options
Diffstat (limited to 'csharp/test/Ice/timeout')
-rw-r--r-- | csharp/test/Ice/timeout/AllTests.cs | 4 |
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); |