Browse Source
fix(AsyncStreamReaderTests): Relax timing
(adapt to slower CI build machines)
Refs: #12423
pull/12426/head
Michael Seibt
1 month ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
tests/app/UnitTests/GitExtUtils.Tests/AsyncStreamReaderTests.cs
|
|
@ -26,7 +26,7 @@ public sealed class AsyncStreamReaderTests |
|
|
|
public async Task AsyncStreamReader() |
|
|
|
{ |
|
|
|
const int millisecondsDelayForAsyncNotification = 50; |
|
|
|
const int millisecondsDelayForPartialLine = 300; |
|
|
|
const int millisecondsDelayForPartialLine = 500; |
|
|
|
|
|
|
|
const string line1 = "line with LF\n"; |
|
|
|
const string line2 = "line with CRLF\r\n"; |
|
|
|