summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/compile/dynamic_imports
diff options
context:
space:
mode:
authorMatt Mastracci <matthew@mastracci.com>2023-06-08 12:10:37 -0600
committerGitHub <noreply@github.com>2023-06-08 18:10:37 +0000
commitdb9482d6880739f4333ce80d9e40f856a0ebefa7 (patch)
tree709038e682254b365b54b54e329220e78e2e3d26 /cli/tests/testdata/compile/dynamic_imports
parent55f01508540e015563e5e54fd0652e81b347b9c1 (diff)
chore: Use relative paths for assert imports to avoid test flakes (#19427)
Tests occasionally fail if we get a bad gateway attempting to fetch the assertion module
Diffstat (limited to 'cli/tests/testdata/compile/dynamic_imports')
-rw-r--r--cli/tests/testdata/compile/dynamic_imports/main_unanalyzable.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/testdata/compile/dynamic_imports/main_unanalyzable.ts b/cli/tests/testdata/compile/dynamic_imports/main_unanalyzable.ts
index e8e3e849b..ee8ff2c4b 100644
--- a/cli/tests/testdata/compile/dynamic_imports/main_unanalyzable.ts
+++ b/cli/tests/testdata/compile/dynamic_imports/main_unanalyzable.ts
@@ -1,4 +1,4 @@
-import { join } from "https://deno.land/std@0.178.0/path/mod.ts";
+import { join } from "../../../../../test_util/std/path/mod.ts";
console.log("Starting the main module");