From 9f74ea232b4f177bfce9d14a89bef6c2552a2988 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ernani=20S=C3=A3o=20Thiago?= Date: Thu, 2 May 2024 12:37:37 -0600 Subject: [PATCH] ON-846: fixed lint --- test/libraries/helpers.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/libraries/helpers.ts b/test/libraries/helpers.ts index 90ba5b7..d38fdde 100644 --- a/test/libraries/helpers.ts +++ b/test/libraries/helpers.ts @@ -14,8 +14,7 @@ async function getListItem(MockedList: Contract, key: number) { } function print(text: string) { - if (ENABLE_LOGS) - console.log(text) + if (ENABLE_LOGS) console.log(text) } function printListItem(n: number, item: any) {