diff --git a/source/Halibut.Tests/Util/StandardIterationCount.cs b/source/Halibut.Tests/Util/StandardIterationCount.cs index e838fd6e5..24da5075d 100644 --- a/source/Halibut.Tests/Util/StandardIterationCount.cs +++ b/source/Halibut.Tests/Util/StandardIterationCount.cs @@ -18,13 +18,13 @@ public static int ForServiceType(ServiceConnectionType connectionType, ClientAnd { case ServiceConnectionType.Polling: // Polling is slow, we don't know why - return 50; + return 42; case ServiceConnectionType.PollingOverWebSocket: // Assume polling over websockets is also slow - return 50; + return 42; case ServiceConnectionType.Listening: // Listening is fast - return 1000; + return 333; default: throw new ArgumentOutOfRangeException(nameof(connectionType), connectionType, null); }