Skip to content

Commit f337128

Browse files
amcaseycaptainsafia
authored andcommitted
Unskip RunIndividualTestCase(http2_6.9.1_2) (#57849)
It's not quarantined, so there's no pass rate, but I can't get it to fail locally - even with a synthetic delay - and the code has been substantially rewritten since the bug was opened. Fixes #30373
1 parent ff876d0 commit f337128

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/Servers/Kestrel/test/Interop.FunctionalTests/H2SpecTests.cs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ public static TheoryData<H2SpecTestCase> H2SpecTestCases
6161
get
6262
{
6363
var dataset = new TheoryData<H2SpecTestCase>();
64-
var toSkip = new string[] { "http2/6.9.1/2" };
6564

6665
var testCases = H2SpecCommands.EnumerateTestCases();
6766

@@ -78,18 +77,11 @@ public static TheoryData<H2SpecTestCase> H2SpecTestCases
7877

7978
foreach (var testcase in testCases)
8079
{
81-
string skip = null;
82-
if (toSkip.Contains(testcase.Item1))
83-
{
84-
skip = "https://github.com/dotnet/aspnetcore/issues/30373";
85-
}
86-
8780
dataset.Add(new H2SpecTestCase
8881
{
8982
Id = testcase.Item1,
9083
Description = testcase.Item2,
9184
Https = false,
92-
Skip = skip,
9385
});
9486

9587
// 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<H2SpecTestCase> H2SpecTestCases
10092
Id = testcase.Item1,
10193
Description = testcase.Item2,
10294
Https = true,
103-
Skip = skip,
10495
});
10596
}
10697
}

0 commit comments

Comments
 (0)