diff options
Diffstat (limited to 'tests/napi/common.js')
-rw-r--r-- | tests/napi/common.js | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/tests/napi/common.js b/tests/napi/common.js index 3a4f253ef..6dfdc873a 100644 --- a/tests/napi/common.js +++ b/tests/napi/common.js @@ -1,12 +1,7 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. -export { - assert, - assertEquals, - assertRejects, - assertThrows, -} from "@std/assert/mod.ts"; -export { fromFileUrl } from "@std/path/mod.ts"; +export { assert, assertEquals, assertRejects, assertThrows } from "@std/assert"; +export { fromFileUrl } from "@std/path"; import process from "node:process"; const targetDir = Deno.execPath().replace(/[^\/\\]+$/, ""); |