Fix unquarantined test (#23356)
This test was unquarantined but needed a fix to pass on Win7
This commit is contained in:
parent
4ee3644166
commit
ef1e47d7db
|
|
@ -249,7 +249,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.InMemory.FunctionalTests
|
|||
using (var sslStream = new SslStream(connection.Stream, true, (sender, certificate, chain, errors) => true))
|
||||
{
|
||||
await sslStream.AuthenticateAsClientAsync("127.0.0.1", clientCertificates: null,
|
||||
enabledSslProtocols: SslProtocols.Tls11 | SslProtocols.Tls12,
|
||||
enabledSslProtocols: SslProtocols.None,
|
||||
checkCertificateRevocation: false);
|
||||
|
||||
var request = Encoding.ASCII.GetBytes("GET / HTTP/1.1\r\nHost:\r\n\r\n");
|
||||
|
|
|
|||
Loading…
Reference in New Issue