From ae9c3cf04d1e11ac1b333fc59bbc944023ad515a Mon Sep 17 00:00:00 2001 From: Andrew Stanton-Nurse Date: Tue, 5 Dec 2017 10:46:12 -0800 Subject: [PATCH] expand ping test expectations to avoid flakiness (#1181) --- test/Microsoft.AspNetCore.SignalR.Tests/HubEndpointTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.AspNetCore.SignalR.Tests/HubEndpointTests.cs b/test/Microsoft.AspNetCore.SignalR.Tests/HubEndpointTests.cs index d63fc03e27..014f9d7e91 100644 --- a/test/Microsoft.AspNetCore.SignalR.Tests/HubEndpointTests.cs +++ b/test/Microsoft.AspNetCore.SignalR.Tests/HubEndpointTests.cs @@ -1454,7 +1454,7 @@ namespace Microsoft.AspNetCore.SignalR.Tests counter += 1; Assert.Same(PingMessage.Instance, message); } - Assert.InRange(counter, 1, 10); + Assert.InRange(counter, 1, Int32.MaxValue); } }