diff options
| author | Matt Mastracci <matthew@mastracci.com> | 2023-06-08 12:10:37 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-08 18:10:37 +0000 |
| commit | db9482d6880739f4333ce80d9e40f856a0ebefa7 (patch) | |
| tree | 709038e682254b365b54b54e329220e78e2e3d26 /cli/tests/testdata/compile | |
| parent | 55f01508540e015563e5e54fd0652e81b347b9c1 (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')
| -rw-r--r-- | cli/tests/testdata/compile/dynamic_imports/main_unanalyzable.ts | 2 | ||||
| -rw-r--r-- | cli/tests/testdata/compile/standalone_follow_redirects_2.js | 2 |
2 files changed, 2 insertions, 2 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"); diff --git a/cli/tests/testdata/compile/standalone_follow_redirects_2.js b/cli/tests/testdata/compile/standalone_follow_redirects_2.js index c0130ef5a..a1bf83875 100644 --- a/cli/tests/testdata/compile/standalone_follow_redirects_2.js +++ b/cli/tests/testdata/compile/standalone_follow_redirects_2.js @@ -2,4 +2,4 @@ import { assertNotEquals as _a, assertStrictEquals as _b, -} from "https://deno.land/std/testing/asserts.ts"; +} from "../../../../test_util/std/testing/asserts.ts"; |
