Skip to content

Commit 339ddb2

Browse files
committed
Fix build
1 parent 272a903 commit 339ddb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Servers/Kestrel/Core/test/KestrelServerTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ public async Task StartWithNoValidTransportFactoryThrows_Http3()
287287
serverOptions.Listen(new IPEndPoint(IPAddress.Loopback, 0), c =>
288288
{
289289
c.Protocols = HttpProtocols.Http3;
290-
c.UseHttps();
290+
c.UseHttps(TestResources.GetTestCertificate());
291291
});
292292

293293
var server = new KestrelServerImpl(
@@ -310,7 +310,7 @@ public async Task StartWithMultipleTransportFactories_Http3_UseSupported()
310310
serverOptions.Listen(endpoint, c =>
311311
{
312312
c.Protocols = HttpProtocols.Http3;
313-
c.UseHttps();
313+
c.UseHttps(TestResources.GetTestCertificate());
314314
});
315315

316316
var transportFactory = new MockMultiplexedTransportFactory();

0 commit comments

Comments
 (0)