From ed1ace650fdf05f353e80879ef4221811455fa32 Mon Sep 17 00:00:00 2001 From: Stephan Schreiber Date: Tue, 28 May 2024 04:54:03 +0200 Subject: [PATCH] test: Typo --- test/02.sourcemap.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/02.sourcemap.test.ts b/test/02.sourcemap.test.ts index d1f3c56..b834bb6 100644 --- a/test/02.sourcemap.test.ts +++ b/test/02.sourcemap.test.ts @@ -16,7 +16,7 @@ describe("SourceMap v3 support", () => { let stack = '' try { // Additional spaces are intentional. column in on the `new` statement. - throw new Error('Stack trace should show line 20, column 21.') + throw new Error('Stack trace should show line 19, column 21.') } catch(e) { stack = (e as Error).stack ?? ''