diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-03-13 19:31:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-13 19:31:03 -0400 |
commit | c4771356f27b250e7fdbcede0de5682982720455 (patch) | |
tree | 1d3507a0b9ee7c6388b3dae8c752328c2528fe74 /cli/tests/unit | |
parent | a35c8e6588fec21586bcb19146cad19fa01f4f23 (diff) |
refactor: Remove call sites of "deno_core::resolve_url_or_path" (#18169)
These call sites didn't need to use "resolve_url_or_path".
Towards landing https://github.com/denoland/deno/pull/15454
Diffstat (limited to 'cli/tests/unit')
-rw-r--r-- | cli/tests/unit/process_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/unit/process_test.ts b/cli/tests/unit/process_test.ts index 3291956f9..e79365a6d 100644 --- a/cli/tests/unit/process_test.ts +++ b/cli/tests/unit/process_test.ts @@ -658,6 +658,6 @@ Deno.test( p.close(); p.stdout.close(); assertStrictEquals(code, 1); - assertStringIncludes(stderr, "invalid module path"); + assertStringIncludes(stderr, "Unable to get CWD"); }, ); |