From 9a6312823a80c48f791337783bffb7c57ec11822 Mon Sep 17 00:00:00 2001 From: Brennan <brecon@microsoft.com> Date: Fri, 24 Jun 2022 13:48:01 -0700 Subject: [PATCH] Unquarantine + extra (#42410) --- src/Hosting/test/FunctionalTests/LinkedApplicationTests.cs | 1 + .../test/Formatters/SystemTextJsonInputFormatterTest.cs | 1 - src/Servers/HttpSys/test/FunctionalTests/Http2Tests.cs | 2 -- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Hosting/test/FunctionalTests/LinkedApplicationTests.cs b/src/Hosting/test/FunctionalTests/LinkedApplicationTests.cs index cb853ec24b3..d9f48a1ee8f 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 4d5fa4d01ba..45ecc1c5c19 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 101224c7e49..a742f8c3d65 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() { -- GitLab