From 62c53611707c279c4a91f3a509feacf36daa369a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tito=20Grin=C3=A9?= <36516031+TitoGrine@users.noreply.github.com> Date: Mon, 21 Nov 2022 21:10:10 +0000 Subject: [PATCH] Fixed minor issue with new tests --- test/singlestoredb.test.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/singlestoredb.test.ts b/test/singlestoredb.test.ts index 988452634..4c25d2625 100644 --- a/test/singlestoredb.test.ts +++ b/test/singlestoredb.test.ts @@ -94,6 +94,8 @@ describe('SingleStoreDbFormatter', () => { SELECT 1 :> DOUBLE AS foo `); + }); + it(`formats '!:>' type-cast operator`, () => { expect(format(`SELECT 1 !:> DOUBLE AS foo`)).toBe(dedent` SELECT 1 !:> DOUBLE AS foo