From 1b54c69db4085a648b2b0dbd5721896b3c4db20a Mon Sep 17 00:00:00 2001 From: Tomas Weinfurt Date: Thu, 10 Aug 2023 06:47:29 -0700 Subject: [PATCH] make Https_MultipleRequests_TlsResumed Linux specific (#90286) --- .../tests/FunctionalTests/SocketsHttpHandlerTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.Net.Http/tests/FunctionalTests/SocketsHttpHandlerTest.cs b/src/libraries/System.Net.Http/tests/FunctionalTests/SocketsHttpHandlerTest.cs index b7dfcdce83c..e25f69529b0 100644 --- a/src/libraries/System.Net.Http/tests/FunctionalTests/SocketsHttpHandlerTest.cs +++ b/src/libraries/System.Net.Http/tests/FunctionalTests/SocketsHttpHandlerTest.cs @@ -4302,7 +4302,7 @@ public sealed class SocketsHttpHandler_SocketsHttpHandler_SecurityTest_Http11 : [Theory] [InlineData(true)] [InlineData(false)] - [PlatformSpecific(TestPlatforms.Windows | TestPlatforms.Linux)] + [PlatformSpecific(TestPlatforms.Linux)] public async Task Https_MultipleRequests_TlsResumed(bool useSocketHandler) { await LoopbackServer.CreateClientAndServerAsync(async uri => -- GitLab