diff --git a/src/Servers/Kestrel/test/Interop.FunctionalTests/H2SpecTests.cs b/src/Servers/Kestrel/test/Interop.FunctionalTests/H2SpecTests.cs index 2ca11e9e2685e..ebeb849b63016 100644 --- a/src/Servers/Kestrel/test/Interop.FunctionalTests/H2SpecTests.cs +++ b/src/Servers/Kestrel/test/Interop.FunctionalTests/H2SpecTests.cs @@ -61,7 +61,6 @@ public static TheoryData H2SpecTestCases get { var dataset = new TheoryData(); - var toSkip = new string[] { "http2/6.9.1/2" }; var testCases = H2SpecCommands.EnumerateTestCases(); @@ -78,18 +77,11 @@ public static TheoryData H2SpecTestCases foreach (var testcase in testCases) { - string skip = null; - if (toSkip.Contains(testcase.Item1)) - { - skip = "https://github.com/dotnet/aspnetcore/issues/30373"; - } - dataset.Add(new H2SpecTestCase { Id = testcase.Item1, Description = testcase.Item2, Https = false, - Skip = skip, }); // https://github.com/dotnet/aspnetcore/issues/11301 We should use Skip but it's broken at the moment. @@ -100,7 +92,6 @@ public static TheoryData H2SpecTestCases Id = testcase.Item1, Description = testcase.Item2, Https = true, - Skip = skip, }); } }