From c4771356f27b250e7fdbcede0de5682982720455 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Mon, 13 Mar 2023 19:31:03 -0400 Subject: 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 --- cli/tests/unit/process_test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/tests') 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"); }, ); -- cgit v1.2.3