summaryrefslogtreecommitdiff
path: root/cli/tests/unit/dispatch_json_test.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-06-05 11:37:40 -0400
committerGitHub <noreply@github.com>2020-06-05 11:37:40 -0400
commit78bfeebad11954666d3104ea3556ec9f2e64f6a4 (patch)
treef29deee9518be75fc4b4d99e4e3c24343de83053 /cli/tests/unit/dispatch_json_test.ts
parentc4c6a8dae488a3473ee09b0e3a54943b706d8944 (diff)
Revert "fix: Use # to denote line number in stack traces" (#6119)
This reverts commit c4c6a8dae488a3473ee09b0e3a54943b706d8944 There is some controversy about this change because vscode doesn't interpret the fragments correctly. Needs more discussion before landing.
Diffstat (limited to 'cli/tests/unit/dispatch_json_test.ts')
-rw-r--r--cli/tests/unit/dispatch_json_test.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/tests/unit/dispatch_json_test.ts b/cli/tests/unit/dispatch_json_test.ts
index 51c63a4db..ebb8217e3 100644
--- a/cli/tests/unit/dispatch_json_test.ts
+++ b/cli/tests/unit/dispatch_json_test.ts
@@ -2,9 +2,9 @@ import { assert, unitTest, assertMatch, unreachable } from "./test_util.ts";
const openErrorStackPattern = new RegExp(
`^.*
- at unwrapResponse \\(.*dispatch_json\\.ts#.*\\)
- at Object.sendAsync \\(.*dispatch_json\\.ts#.*\\)
- at async Object\\.open \\(.*files\\.ts#.*\\).*$`,
+ at unwrapResponse \\(.*dispatch_json\\.ts:.*\\)
+ at Object.sendAsync \\(.*dispatch_json\\.ts:.*\\)
+ at async Object\\.open \\(.*files\\.ts:.*\\).*$`,
"ms"
);