diff options
Diffstat (limited to 'swift/test/Ice/retry/AllTests.swift')
-rw-r--r-- | swift/test/Ice/retry/AllTests.swift | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/swift/test/Ice/retry/AllTests.swift b/swift/test/Ice/retry/AllTests.swift index c77f48e9454..ba1eb1bf5c2 100644 --- a/swift/test/Ice/retry/AllTests.swift +++ b/swift/test/Ice/retry/AllTests.swift @@ -112,12 +112,11 @@ public func allTests(helper: TestHelper, communicator2: Ice.Communicator, ref: S // The timeout might occur on connection establishment or because of the sleep. What's // 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. - let retryWithTimeout = retry1.ice_invocationTimeout(-2).ice_timeout(200) + let retryWithTimeout = retry1.ice_invocationTimeout(-2).ice_timeout(100) do { - try retryWithTimeout.sleep(500) + try retryWithTimeout.sleep(1000) try test(false) - } catch is Ice.TimeoutException { - } + } catch is Ice.TimeoutException {} } output.writeLine("ok") return retry1 |