diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-07-25 10:26:54 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-25 10:26:54 +1000 |
commit | f248050cb467eaed8d65428b8808254e26797cc5 (patch) | |
tree | 7e43f16a8754a6313f65f0f65c037fdae2ce986f /tests/specs/test/clean_flag/sum_test.js | |
parent | 795ed23b356dc044cfb497a6189d588604a6c335 (diff) |
chore: use `@std` prefix for internal module specifiers (#24543)
This change aims to replace all relative import specifiers targeted at
`tests/util/std` with mapped ones (using a `deno.json` file). Towards
updating the `std` git submodule.
Diffstat (limited to 'tests/specs/test/clean_flag/sum_test.js')
-rw-r--r-- | tests/specs/test/clean_flag/sum_test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/specs/test/clean_flag/sum_test.js b/tests/specs/test/clean_flag/sum_test.js index 3443fcbd3..eab3c53ad 100644 --- a/tests/specs/test/clean_flag/sum_test.js +++ b/tests/specs/test/clean_flag/sum_test.js @@ -1,5 +1,5 @@ import { sum } from "./sum.js"; -import { assertEquals } from "../../../util/std/assert/assert_equals.ts"; +import { assertEquals } from "@std/assert/assert_equals.ts"; Deno.test("sum()", () => { assertEquals(sum(1, 2), 3); |