From e461918163095c4e4ca5aa24d29e3ae61984c09b Mon Sep 17 00:00:00 2001 From: ManickaP Date: Tue, 17 Feb 2026 17:49:31 +0100 Subject: [PATCH] Re-enable AuthProxy__ValidCreds_ProxySendsRequestToServer test Remove the ActiveIssue attribute disabling this outerloop proxy authentication test. The test was disabled in October 2018 due to assertion failures in Http2Connection.InvalidateHttp2Connection and connection reset errors. The HTTP/2 connection pool has been completely rewritten since then. Fixes https://github.com/dotnet/runtime/issues/1507 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../Common/tests/System/Net/Http/HttpClientHandlerTest.Proxy.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.Proxy.cs b/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.Proxy.cs index c2031f5aa75ed8..15f8f328d389eb 100644 --- a/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.Proxy.cs +++ b/src/libraries/Common/tests/System/Net/Http/HttpClientHandlerTest.Proxy.cs @@ -56,7 +56,6 @@ await LoopbackServerFactory.CreateClientAndServerAsync(async uri => Assert.False(proxy.Disposed); } - [ActiveIssue("https://github.com/dotnet/runtime/issues/1507")] [OuterLoop("Uses external servers")] [ConditionalTheory(typeof(PlatformDetection), nameof(PlatformDetection.IsNotWindowsNanoServer))] [InlineData(AuthenticationSchemes.Ntlm, true, false)]