diff options
Diffstat (limited to 'tests/testdata/coverage/no_tests_included/foo.test.js')
-rw-r--r-- | tests/testdata/coverage/no_tests_included/foo.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testdata/coverage/no_tests_included/foo.test.js b/tests/testdata/coverage/no_tests_included/foo.test.js index e838badea..276375311 100644 --- a/tests/testdata/coverage/no_tests_included/foo.test.js +++ b/tests/testdata/coverage/no_tests_included/foo.test.js @@ -1,5 +1,5 @@ import { addNumbers } from "./foo.ts"; -import { assertEquals } from "@std/assert/mod.ts"; +import { assertEquals } from "@std/assert"; Deno.test("addNumbers works", () => { assertEquals(addNumbers(1, 2), 3); |