From fb9322ab6aad2d1fe287960ef552ed0f33b0860d Mon Sep 17 00:00:00 2001 From: xbtmatt <90358481+xbtmatt@users.noreply.github.com> Date: Tue, 10 Oct 2023 18:19:31 -0700 Subject: [PATCH] Reformat typetag error message --- tests/unit/type_tag.test.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/unit/type_tag.test.ts b/tests/unit/type_tag.test.ts index 961b441cf..ae8fb8f0d 100644 --- a/tests/unit/type_tag.test.ts +++ b/tests/unit/type_tag.test.ts @@ -73,8 +73,7 @@ describe("TypeTagParser", () => { expect(error).toBeInstanceOf(ParsingError); const typeTagError = error as ParsingError; expect(typeTagError.message).toEqual( - `The given hex string ${typeTag} is a special address not in LONG form, - it must be 0x0 to 0xf without padding zeroes.`, + `The given hex string ${typeTag} is a special address not in LONG form, it must be 0x0 to 0xf without padding zeroes.`, ); }