summaryrefslogtreecommitdiff
path: root/csharp/test/Ice/retry/AllTests.cs
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/test/Ice/retry/AllTests.cs')
-rw-r--r--csharp/test/Ice/retry/AllTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/csharp/test/Ice/retry/AllTests.cs b/csharp/test/Ice/retry/AllTests.cs
index e6c45956770..0b039a395b3 100644
--- a/csharp/test/Ice/retry/AllTests.cs
+++ b/csharp/test/Ice/retry/AllTests.cs
@@ -279,10 +279,10 @@ namespace Ice
// important here is to make sure there are 4 retries and that no calls succeed to
// ensure retries with the old connection timeout semantics work.
Test.RetryPrx retryWithTimeout =
- (Test.RetryPrx)retry1.ice_invocationTimeout(-2).ice_timeout(200);
+ (Test.RetryPrx)retry1.ice_invocationTimeout(-2).ice_timeout(100);
try
{
- retryWithTimeout.sleep(500);
+ retryWithTimeout.sleep(1000);
test(false);
}
catch(Ice.TimeoutException)