Skip to content

Commit 5b8bf67

Browse files
CarnaViireManickaP
authored andcommitted
Re-enable GetAsync_LargeHeader_Success for H/3 (#57955)
Fixes #55508
1 parent e1997ef commit 5b8bf67

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/libraries/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.Headers.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -214,12 +214,6 @@ await LoopbackServerFactory.CreateClientAndServerAsync(async uri =>
214214
[InlineData("RandomCustomHeader", 12345)]
215215
public async Task GetAsync_LargeHeader_Success(string headerName, int headerValueLength)
216216
{
217-
if (UseVersion == HttpVersion.Version30)
218-
{
219-
// [ActiveIssue("https://github.com/dotnet/runtime/issues/55508")]
220-
return;
221-
}
222-
223217
var rand = new Random(42);
224218
string headerValue = string.Concat(Enumerable.Range(0, headerValueLength).Select(_ => (char)('A' + rand.Next(26))));
225219

0 commit comments

Comments
 (0)