diff options
author | Kevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com> | 2018-12-19 02:57:23 -0500 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-12-19 02:57:23 -0500 |
commit | 57338d98bef93bb45c8aff945ccec5d310d3c241 (patch) | |
tree | 15275505d71e151d472ba156304666f54f61416b /js/testing/util.ts | |
parent | 22874d44a65ed670735fb0d7f6bc8de45f13620a (diff) |
Add illegal header name and value guards (#1375)
Diffstat (limited to 'js/testing/util.ts')
-rw-r--r-- | js/testing/util.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/testing/util.ts b/js/testing/util.ts index 193540351..1e245fb71 100644 --- a/js/testing/util.ts +++ b/js/testing/util.ts @@ -21,7 +21,7 @@ export function assertEqual(actual: any, expected: any, msg?: string) { } if (!equal(actual, expected)) { console.error( - "assertEqual failed. actual = ", + "assertEqual failed. actual =", actual, "expected =", expected |