summaryrefslogtreecommitdiff
path: root/tests/testdata/run/textproto.ts
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-07-25 10:26:54 +1000
committerGitHub <noreply@github.com>2024-07-25 10:26:54 +1000
commitf248050cb467eaed8d65428b8808254e26797cc5 (patch)
tree7e43f16a8754a6313f65f0f65c037fdae2ce986f /tests/testdata/run/textproto.ts
parent795ed23b356dc044cfb497a6189d588604a6c335 (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/run/textproto.ts')
-rw-r--r--tests/testdata/run/textproto.ts7
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/testdata/run/textproto.ts b/tests/testdata/run/textproto.ts
index f35ab6734..d1b667c15 100644
--- a/tests/testdata/run/textproto.ts
+++ b/tests/testdata/run/textproto.ts
@@ -14,11 +14,8 @@
* @module
*/
-import type {
- BufReader,
- ReadLineResult,
-} from "../../../tests/util/std/io/buf_reader.ts";
-import { concat } from "../../../tests/util/std/bytes/concat.ts";
+import type { BufReader, ReadLineResult } from "@std/io/buf_reader.ts";
+import { concat } from "@std/bytes/concat.ts";
// Constants created for DRY
const CHAR_SPACE: number = " ".charCodeAt(0);