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/fetch_test.ts | |
parent | 57556ade8c128aeea7340d463b35c86afe1fb4f7 (diff) |
test: remove `DENO_FUTURE` (#25587)
Diffstat (limited to 'tests/unit/fetch_test.ts')
-rw-r--r-- | tests/unit/fetch_test.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/unit/fetch_test.ts b/tests/unit/fetch_test.ts index 35517911c..48cde90ab 100644 --- a/tests/unit/fetch_test.ts +++ b/tests/unit/fetch_test.ts @@ -9,7 +9,6 @@ import { assertStringIncludes, assertThrows, delay, - DENO_FUTURE, fail, unimplemented, } from "./test_util.ts"; @@ -1359,7 +1358,7 @@ Deno.test( ); Deno.test( - { permissions: { read: true, net: true }, ignore: DENO_FUTURE }, + { permissions: { read: true, net: true } }, async function fetchCustomClientPrivateKey(): Promise< void > { |