summaryrefslogtreecommitdiff
path: root/tests/testdata/test
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-02-14 03:22:49 +1100
committerGitHub <noreply@github.com>2024-02-13 09:22:49 -0700
commit6be389ce291317346b2085231813cccd0e501daf (patch)
treea9ba1247f99c54aaf063ce4aab94f8a14bc92611 /tests/testdata/test
parenta68eb3fcc3997fce8680f87edce46f6450e79635 (diff)
chore: move `test_util/std` to `tests/util/std` (#22402)
Note: tests are not the only part of the codebase that uses `std`. Other parts, like `tools/`, do too. So, it could be argued that this is a little misleading. Either way, I'm doing this as discussed with @mmastrac.
Diffstat (limited to 'tests/testdata/test')
-rw-r--r--tests/testdata/test/allow_all.ts2
-rw-r--r--tests/testdata/test/allow_none.ts2
-rw-r--r--tests/testdata/test/ops_sanitizer_missing_details.ts2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/testdata/test/allow_all.ts b/tests/testdata/test/allow_all.ts
index e533bc017..44d61d99b 100644
--- a/tests/testdata/test/allow_all.ts
+++ b/tests/testdata/test/allow_all.ts
@@ -1,4 +1,4 @@
-import { assertEquals } from "../../../test_util/std/assert/mod.ts";
+import { assertEquals } from "../../../tests/util/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 04c40a093..359f31700 100644
--- a/tests/testdata/test/allow_none.ts
+++ b/tests/testdata/test/allow_none.ts
@@ -1,4 +1,4 @@
-import { unreachable } from "../../../test_util/std/assert/mod.ts";
+import { unreachable } from "../../../tests/util/std/assert/mod.ts";
const permissions: Deno.PermissionName[] = [
"read",
diff --git a/tests/testdata/test/ops_sanitizer_missing_details.ts b/tests/testdata/test/ops_sanitizer_missing_details.ts
index a40240bfc..45fc89b42 100644
--- a/tests/testdata/test/ops_sanitizer_missing_details.ts
+++ b/tests/testdata/test/ops_sanitizer_missing_details.ts
@@ -1,6 +1,6 @@
// https://github.com/denoland/deno/issues/13729
// https://github.com/denoland/deno/issues/13938
-import { writeAll } from "../../../test_util/std/streams/write_all.ts";
+import { writeAll } from "../../../tests/util/std/streams/write_all.ts";
Deno.test("test 1", { permissions: { write: true, read: true } }, async () => {
const tmpFile = await Deno.makeTempFile();