From 87189875ff853835e24faa031251a1cadc4fc4ad Mon Sep 17 00:00:00 2001 From: Cesar Blum Silveira Date: Thu, 24 Aug 2017 13:43:04 -0700 Subject: [PATCH] Increase timeout in Server_ClientDisconnects_CallCanceled to mitigate test flakiness. --- .../ServerTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests/ServerTests.cs b/test/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests/ServerTests.cs index b5c9734bb7..22d53e02f7 100644 --- a/test/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests/ServerTests.cs +++ b/test/Microsoft.AspNetCore.Server.HttpSys.FunctionalTests/ServerTests.cs @@ -219,7 +219,7 @@ namespace Microsoft.AspNetCore.Server.HttpSys [ConditionalFact] public async Task Server_ClientDisconnects_CallCanceled() { - TimeSpan interval = TimeSpan.FromSeconds(1); + TimeSpan interval = TimeSpan.FromSeconds(10); ManualResetEvent received = new ManualResetEvent(false); ManualResetEvent aborted = new ManualResetEvent(false); ManualResetEvent canceled = new ManualResetEvent(false);