We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 272a903 commit 339ddb2Copy full SHA for 339ddb2
src/Servers/Kestrel/Core/test/KestrelServerTests.cs
@@ -287,7 +287,7 @@ public async Task StartWithNoValidTransportFactoryThrows_Http3()
287
serverOptions.Listen(new IPEndPoint(IPAddress.Loopback, 0), c =>
288
{
289
c.Protocols = HttpProtocols.Http3;
290
- c.UseHttps();
+ c.UseHttps(TestResources.GetTestCertificate());
291
});
292
293
var server = new KestrelServerImpl(
@@ -310,7 +310,7 @@ public async Task StartWithMultipleTransportFactories_Http3_UseSupported()
310
serverOptions.Listen(endpoint, c =>
311
312
313
314
315
316
var transportFactory = new MockMultiplexedTransportFactory();
0 commit comments