diff --git a/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.Cancellation.cs b/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.Cancellation.cs index b0a274ad787fcf..6b95f52046f217 100644 --- a/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.Cancellation.cs +++ b/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.Cancellation.cs @@ -520,8 +520,6 @@ public static IEnumerable PostAsync_Cancel_CancellationTokenPassedToCo } #if !NETFRAMEWORK - [ActiveIssue("https://github.com/dotnet/runtime/issues/41531")] - [OuterLoop("Uses Task.Delay")] [Theory] [MemberData(nameof(PostAsync_Cancel_CancellationTokenPassedToContent_MemberData))] public async Task PostAsync_Cancel_CancellationTokenPassedToContent(HttpContent content, CancellationTokenSource cancellationTokenSource) @@ -558,7 +556,7 @@ await LoopbackServerFactory.CreateClientAndServerAsync( await server.HandleRequestAsync(content: "Hello World"); } catch (Exception) { } - }); + }).WaitAsync(TestHelper.PassingTestTimeout); } #endif