We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e2aae0 commit ed32e0dCopy full SHA for ed32e0d
src/libraries/System.Net.Http/tests/FunctionalTests/HttpClientHandlerTest.Headers.cs
@@ -214,12 +214,6 @@ await LoopbackServerFactory.CreateClientAndServerAsync(async uri =>
214
[InlineData("RandomCustomHeader", 12345)]
215
public async Task GetAsync_LargeHeader_Success(string headerName, int headerValueLength)
216
{
217
- if (UseVersion == HttpVersion.Version30)
218
- {
219
- // [ActiveIssue("https://github.com/dotnet/runtime/issues/55508")]
220
- return;
221
- }
222
-
223
var rand = new Random(42);
224
string headerValue = string.Concat(Enumerable.Range(0, headerValueLength).Select(_ => (char)('A' + rand.Next(26))));
225
0 commit comments