Reduce Functional Test Stream Item Delay (#10127)

This commit is contained in:
Mikael Mengistu 2019-05-09 21:22:40 -07:00 committed by GitHub
parent 0adbfc6d25
commit 5d56d8fdb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -186,7 +186,7 @@ namespace Microsoft.AspNetCore.SignalR.Client.FunctionalTests
for (var i = 0; i < count; i++)
{
await channel.Writer.WriteAsync(i);
await Task.Delay(100);
await Task.Delay(20);
}
channel.Writer.TryComplete();