diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-08-21 11:53:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-21 09:53:52 +0000 |
commit | 5834d282d4de5d0b5cacb9bf068f3896bef0a48a (patch) | |
tree | 0e1d15e9f81600ce3c910a70c6e7c12952778f72 /cli/tests/integration/compile_tests.rs | |
parent | af125c8e700eacc7360b3d81ffe4de13e12a612a (diff) |
refactor: upgrade deno_ast 0.28 and deno_semver 0.4 (#20193)
Diffstat (limited to 'cli/tests/integration/compile_tests.rs')
-rw-r--r-- | cli/tests/integration/compile_tests.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/integration/compile_tests.rs b/cli/tests/integration/compile_tests.rs index 022148ce4..f43b1cff9 100644 --- a/cli/tests/integration/compile_tests.rs +++ b/cli/tests/integration/compile_tests.rs @@ -120,9 +120,9 @@ fn standalone_error() { assert_contains!(stderr, "error: Uncaught Error: boom!"); assert_contains!(stderr, "throw new Error(\"boom!\");"); assert_contains!(stderr, "\n at boom (file://"); - assert_contains!(stderr, "standalone_error.ts:2:11"); + assert_contains!(stderr, "standalone_error.ts:2:9"); assert_contains!(stderr, "at foo (file://"); - assert_contains!(stderr, "standalone_error.ts:5:5"); + assert_contains!(stderr, "standalone_error.ts:5:3"); assert_contains!(stderr, "standalone_error.ts:7:1"); } |