Skip to content

Commit

Permalink
Re-enable GetAsync_LargeHeader_Success for H/3 (#57955)
Browse files Browse the repository at this point in the history
Fixes #55508
  • Loading branch information
CarnaViire authored Aug 23, 2021
1 parent 5e2aae0 commit ed32e0d
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -214,12 +214,6 @@ await LoopbackServerFactory.CreateClientAndServerAsync(async uri =>
[InlineData("RandomCustomHeader", 12345)]
public async Task GetAsync_LargeHeader_Success(string headerName, int headerValueLength)
{
if (UseVersion == HttpVersion.Version30)
{
// [ActiveIssue("https://github.com/dotnet/runtime/issues/55508")]
return;
}

var rand = new Random(42);
string headerValue = string.Concat(Enumerable.Range(0, headerValueLength).Select(_ => (char)('A' + rand.Next(26))));

Expand Down

0 comments on commit ed32e0d

Please sign in to comment.