Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@

namespace System.Net.Http.Functional.Tests
{
using Configuration = System.Net.Test.Common.Configuration;

public class HttpClientMiniStress : HttpClientTestBase
{
[ConditionalTheory(typeof(TestEnvironment), nameof(TestEnvironment.IsStressModeEnabled))]
Expand Down Expand Up @@ -186,6 +184,7 @@ await LoopbackServer.AcceptSocketAsync(server, async (s, stream, reader, writer)
});
}

[ActiveIssue(27058)]
[ConditionalFact(typeof(TestEnvironment), nameof(TestEnvironment.IsStressModeEnabled))]
public async Task UnreadResponseMessage_Collectible()
{
Expand Down Expand Up @@ -222,7 +221,7 @@ private static string CreateResponse(string asciiBody) =>
"Content-Type: text/plain\r\n" +
$"Content-Length: {asciiBody.Length}\r\n" +
"\r\n" +
$"{asciiBody}\r\n";
$"{asciiBody}";

private static Task ForCountAsync(int count, int dop, Func<int, Task> bodyAsync)
{
Expand Down