Skip to content

Commit ef1e47d

Browse files
author
John Luo
authored
Fix unquarantined test (#23356)
This test was unquarantined but needed a fix to pass on Win7
1 parent 4ee3644 commit ef1e47d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Servers/Kestrel/test/InMemory.FunctionalTests/HttpsTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ public async Task DoesNotThrowObjectDisposedExceptionFromWriteAsyncAfterConnecti
249249
using (var sslStream = new SslStream(connection.Stream, true, (sender, certificate, chain, errors) => true))
250250
{
251251
await sslStream.AuthenticateAsClientAsync("127.0.0.1", clientCertificates: null,
252-
enabledSslProtocols: SslProtocols.Tls11 | SslProtocols.Tls12,
252+
enabledSslProtocols: SslProtocols.None,
253253
checkCertificateRevocation: false);
254254

255255
var request = Encoding.ASCII.GetBytes("GET / HTTP/1.1\r\nHost:\r\n\r\n");

0 commit comments

Comments
 (0)