diff options
Diffstat (limited to 'tests/unit/flock_test.ts')
-rw-r--r-- | tests/unit/flock_test.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/flock_test.ts b/tests/unit/flock_test.ts index f2a75e5d4..4b194ce55 100644 --- a/tests/unit/flock_test.ts +++ b/tests/unit/flock_test.ts @@ -1,15 +1,15 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. -import { assertEquals, DENO_FUTURE } from "./test_util.ts"; +import { assertEquals } from "./test_util.ts"; Deno.test( - { ignore: DENO_FUTURE, permissions: { read: true, run: true, hrtime: true } }, + { permissions: { read: true, run: true, hrtime: true } }, async function flockFileSync() { await runFlockTests({ sync: true }); }, ); Deno.test( - { ignore: DENO_FUTURE, permissions: { read: true, run: true, hrtime: true } }, + { permissions: { read: true, run: true, hrtime: true } }, async function flockFileAsync() { await runFlockTests({ sync: false }); }, |