diff --git a/src/Servers/Kestrel/test/FunctionalTests/RequestTests.cs b/src/Servers/Kestrel/test/FunctionalTests/RequestTests.cs index d9ae3b5182ad..d6c97dc7ce25 100644 --- a/src/Servers/Kestrel/test/FunctionalTests/RequestTests.cs +++ b/src/Servers/Kestrel/test/FunctionalTests/RequestTests.cs @@ -524,7 +524,6 @@ public async Task AbortingTheConnectionSendsFIN() [Theory] [MemberData(nameof(ConnectionMiddlewareDataName))] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23043")] public async Task ConnectionClosedTokenFiresOnClientFIN(string listenOptionsName) { var testContext = new TestServiceContext(LoggerFactory); @@ -560,7 +559,6 @@ await connection.Send( [Theory] [MemberData(nameof(ConnectionMiddlewareDataName))] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/37750")] public async Task ConnectionClosedTokenFiresOnServerFIN(string listenOptionsName) { var testContext = new TestServiceContext(LoggerFactory); @@ -597,7 +595,6 @@ await connection.ReceiveEnd($"HTTP/1.1 200 OK", [Theory] [MemberData(nameof(ConnectionMiddlewareDataName))] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35686")] public async Task ConnectionClosedTokenFiresOnServerAbort(string listenOptionsName) { var testContext = new TestServiceContext(LoggerFactory); diff --git a/src/Servers/Kestrel/test/FunctionalTests/ResponseTests.cs b/src/Servers/Kestrel/test/FunctionalTests/ResponseTests.cs index 988f36cbdb74..fc1fc85d8377 100644 --- a/src/Servers/Kestrel/test/FunctionalTests/ResponseTests.cs +++ b/src/Servers/Kestrel/test/FunctionalTests/ResponseTests.cs @@ -257,7 +257,6 @@ await connection.Send( [Theory] [MemberData(nameof(ConnectionMiddlewareData))] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/33455")] public async Task WritingToConnectionAfterUnobservedCloseTriggersRequestAbortedToken(ListenOptions listenOptions) { const int connectionPausedEventId = 4; @@ -825,8 +824,6 @@ await connection.Receive( } [Fact] - [CollectDump] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/26306")] public async Task ConnectionNotClosedWhenClientSatisfiesMinimumDataRateGivenLargeResponseHeaders() { var headerSize = 1024 * 1024; // 1 MB for each header value