diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-09-12 11:30:12 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-12 11:30:12 +1000 |
commit | 3285801429eb7a40e022b571b7e3007c3e60250c (patch) | |
tree | 2ddd6c9757a9753b4cd0c21cd93f68937b79b1ab /tests/unit/tls_test.ts | |
parent | 57556ade8c128aeea7340d463b35c86afe1fb4f7 (diff) |
test: remove `DENO_FUTURE` (#25587)
Diffstat (limited to 'tests/unit/tls_test.ts')
-rw-r--r-- | tests/unit/tls_test.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/unit/tls_test.ts b/tests/unit/tls_test.ts index 0f6ffc15f..aba4d254c 100644 --- a/tests/unit/tls_test.ts +++ b/tests/unit/tls_test.ts @@ -6,7 +6,6 @@ import { assertRejects, assertStrictEquals, assertThrows, - DENO_FUTURE, } from "./test_util.ts"; import { BufReader, BufWriter } from "@std/io"; import { readAll } from "@std/io/read-all"; @@ -1042,7 +1041,7 @@ Deno.test( ); Deno.test( - { permissions: { read: true, net: true }, ignore: DENO_FUTURE }, + { permissions: { read: true, net: true } }, async function connectTLSBadCertKey(): Promise<void> { await assertRejects(async () => { await Deno.connectTls({ @@ -1074,7 +1073,7 @@ Deno.test( ); Deno.test( - { permissions: { read: true, net: true }, ignore: DENO_FUTURE }, + { permissions: { read: true, net: true } }, async function connectTLSNotKey(): Promise<void> { await assertRejects(async () => { await Deno.connectTls({ |