From 4e13df4c4ee210850d134ec972569d64fedaa11a Mon Sep 17 00:00:00 2001 From: Jan Jahoda Date: Mon, 11 Jan 2021 02:09:52 +0100 Subject: [PATCH] Disable the test (#46752) Co-authored-by: Jan Jahoda --- .../System/Net/Http/HttpClientHandlerTest.Cancellation.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 601364247f70a..72c02b69b4b38 100644 --- a/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.Cancellation.cs +++ b/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.Cancellation.cs @@ -201,7 +201,7 @@ public async Task GetAsync_CancelDuringResponseBodyReceived_Unbuffered_TaskCance // There is no chunked encoding or connection header in HTTP/2 and later return; } - + if (IsWinHttpHandler && UseVersion >= HttpVersion20.Value) { return; @@ -528,6 +528,7 @@ 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))]