Skip to content

Commit 6d6c23f

Browse files
committed
Increase delay to reduce CI failures.
1 parent 250fdb5 commit 6d6c23f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/SideBySide/CommandTimeoutTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public async Task CommandTimeoutWithSleepAsync()
106106
{
107107
sw.Stop();
108108
Assert.Contains(c_timeoutMessage, ex.Message, StringComparison.OrdinalIgnoreCase);
109-
TestUtilities.AssertDuration(sw, cmd.CommandTimeout * 1000 - 100, 500);
109+
TestUtilities.AssertDuration(sw, cmd.CommandTimeout * 1000 - 100, 700);
110110
}
111111
}
112112

@@ -185,7 +185,7 @@ public async Task MultipleCommandTimeoutWithSleepAsync()
185185
sw.Stop();
186186
Assert.True(readFirstResultSet);
187187
Assert.Contains("timeout", ex.Message, StringComparison.OrdinalIgnoreCase);
188-
TestUtilities.AssertDuration(sw, cmd.CommandTimeout * 1000 - 100, 500);
188+
TestUtilities.AssertDuration(sw, cmd.CommandTimeout * 1000 - 100, 550);
189189
}
190190
}
191191

0 commit comments

Comments
 (0)