diff --git a/src/Hosting/test/FunctionalTests/LinkedApplicationTests.cs b/src/Hosting/test/FunctionalTests/LinkedApplicationTests.cs
index cb853ec24b376a11bae7ea0866c2ce8542e34aac..d9f48a1ee8f5672eadc69fbfca01456643ef9d75 100644
--- a/src/Hosting/test/FunctionalTests/LinkedApplicationTests.cs
+++ b/src/Hosting/test/FunctionalTests/LinkedApplicationTests.cs
@@ -8,6 +8,7 @@ namespace Microsoft.AspNetCore.Hosting.FunctionalTests;
 
 public class LinkedApplicationTests : LoggedTest
 {
+    [Fact]
     [QuarantinedTest("https://github.com/dotnet/aspnetcore-internal/issues/4030")]
     public async Task LinkedApplicationWorks()
     {
diff --git a/src/Mvc/Mvc.Core/test/Formatters/SystemTextJsonInputFormatterTest.cs b/src/Mvc/Mvc.Core/test/Formatters/SystemTextJsonInputFormatterTest.cs
index 4d5fa4d01baaa50c69b24019390df6389b0e8888..45ecc1c5c19b087366d0c5715eaf1a1d031b214e 100644
--- a/src/Mvc/Mvc.Core/test/Formatters/SystemTextJsonInputFormatterTest.cs
+++ b/src/Mvc/Mvc.Core/test/Formatters/SystemTextJsonInputFormatterTest.cs
@@ -133,7 +133,6 @@ public class SystemTextJsonInputFormatterTest : JsonInputFormatterTestBase
     [InlineData("{\"a\":{\"b\"}}", "$.a", "'}' is invalid after a property name. Expected a ':'. Path: $.a | LineNumber: 0 | BytePositionInLine: 9.")]
     [InlineData("{\"age\":\"x\"}", "$.age", "The JSON value could not be converted to System.Decimal. Path: $.age | LineNumber: 0 | BytePositionInLine: 10.")]
     [InlineData("{\"login\":1}", "$.login", "The JSON value could not be converted to Microsoft.AspNetCore.Mvc.Formatters.SystemTextJsonInputFormatterTest+UserLogin. Path: $.login | LineNumber: 0 | BytePositionInLine: 10.")]
-    [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/40661")]
     public async Task ReadAsync_WithAllowInputFormatterExceptionMessages_RegistersJsonInputExceptionsAsInputFormatterException(
                 string content,
                 string modelStateKey,
diff --git a/src/Servers/HttpSys/test/FunctionalTests/Http2Tests.cs b/src/Servers/HttpSys/test/FunctionalTests/Http2Tests.cs
index 101224c7e49e97e884d6ba898b61c9f64734a54a..a742f8c3d651808edfd73b7189c00a68eb26dd55 100644
--- a/src/Servers/HttpSys/test/FunctionalTests/Http2Tests.cs
+++ b/src/Servers/HttpSys/test/FunctionalTests/Http2Tests.cs
@@ -837,7 +837,6 @@ public class Http2Tests : LoggedTest
     }
 
     [ConditionalFact]
-    [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/29126")]
     [MinimumOSVersion(OperatingSystems.Windows, VersionForReset)]
     public async Task Reset_BeforeRequestBody_Resets()
     {
@@ -884,7 +883,6 @@ public class Http2Tests : LoggedTest
     }
 
     [ConditionalFact]
-    [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/29126")]
     [MinimumOSVersion(OperatingSystems.Windows, VersionForReset)]
     public async Task Reset_DurringRequestBody_Resets()
     {