summaryrefslogtreecommitdiff
path: root/tests/unit_node/tls_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit_node/tls_test.ts')
-rw-r--r--tests/unit_node/tls_test.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/unit_node/tls_test.ts b/tests/unit_node/tls_test.ts
index 7daa544c7..93eacd5ec 100644
--- a/tests/unit_node/tls_test.ts
+++ b/tests/unit_node/tls_test.ts
@@ -149,10 +149,12 @@ Deno.test("tls.createServer creates a TLS server", async () => {
},
);
server.listen(0, async () => {
- const conn = await Deno.connectTls({
- hostname: "127.0.0.1",
+ const tcpConn = await Deno.connect({
// deno-lint-ignore no-explicit-any
port: (server.address() as any).port,
+ });
+ const conn = await Deno.startTls(tcpConn, {
+ hostname: "localhost",
caCerts: [rootCaCert],
});