We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe57681 commit 6a52ff6Copy full SHA for 6a52ff6
scripts/cts/testServer/timeout.ts
@@ -28,6 +28,9 @@ export function assertValidTimeouts(expectedCount: number): void {
28
case 'PHP':
29
expect(state.duration[0] * 2).to.be.closeTo(state.duration[1], 200);
30
break;
31
+ case 'Swift':
32
+ expect(state.duration[0]).to.be.closeTo(state.duration[1], 500);
33
+ break;
34
default:
35
// the delay should be the same, because the `retryCount` is per host instead of global
36
expect(state.duration[0]).to.be.closeTo(state.duration[1], 100);
0 commit comments