summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/compiler_api_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/compiler_api_test.ts')
-rw-r--r--cli/tests/testdata/compiler_api_test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/testdata/compiler_api_test.ts b/cli/tests/testdata/compiler_api_test.ts
index f51b5647c..30fc19d5f 100644
--- a/cli/tests/testdata/compiler_api_test.ts
+++ b/cli/tests/testdata/compiler_api_test.ts
@@ -514,7 +514,7 @@ Deno.test({
code: 900001,
start: null,
end: null,
- messageText: 'Cannot load module "file:///b.ts".',
+ messageText: 'Module not found "file:///b.ts".',
messageChain: null,
source: null,
sourceLine: null,
@@ -524,7 +524,7 @@ Deno.test({
]);
assert(
Deno.formatDiagnostics(diagnostics).includes(
- 'Cannot load module "file:///b.ts".',
+ 'Module not found "file:///b.ts".',
),
);
},