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/testdata/test | |
| 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/testdata/test')
| -rw-r--r-- | tests/testdata/test/allow_all.ts | 2 | ||||
| -rw-r--r-- | tests/testdata/test/allow_none.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/testdata/test/allow_all.ts b/tests/testdata/test/allow_all.ts index 44d61d99b..589f200df 100644 --- a/tests/testdata/test/allow_all.ts +++ b/tests/testdata/test/allow_all.ts @@ -1,4 +1,4 @@ -import { assertEquals } from "../../../tests/util/std/assert/mod.ts"; +import { assertEquals } from "@std/assert/mod.ts"; const permissions: Deno.PermissionName[] = [ "read", diff --git a/tests/testdata/test/allow_none.ts b/tests/testdata/test/allow_none.ts index 359f31700..903a926ba 100644 --- a/tests/testdata/test/allow_none.ts +++ b/tests/testdata/test/allow_none.ts @@ -1,4 +1,4 @@ -import { unreachable } from "../../../tests/util/std/assert/mod.ts"; +import { unreachable } from "@std/assert/mod.ts"; const permissions: Deno.PermissionName[] = [ "read", |
