From f248050cb467eaed8d65428b8808254e26797cc5 Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Thu, 25 Jul 2024 10:26:54 +1000 Subject: 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. --- tests/testdata/test/allow_all.ts | 2 +- tests/testdata/test/allow_none.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/testdata/test') 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", -- cgit v1.2.3