From 23513410f1896f8ff667768a9c17c816e2e0b586 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Cavaleiro?= Date: Wed, 11 Oct 2023 16:08:15 +0100 Subject: [PATCH] space refactoring --- malty/atoms/Headline/Headline.test.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/malty/atoms/Headline/Headline.test.tsx b/malty/atoms/Headline/Headline.test.tsx index 282eb5bbb..2a64a85c1 100644 --- a/malty/atoms/Headline/Headline.test.tsx +++ b/malty/atoms/Headline/Headline.test.tsx @@ -8,7 +8,7 @@ const testId = 'headline'; describe('Headline component', () => { it('should render with the correct text', () => { - render({text} ); + render({text}); const rendered = screen.getByText(text); @@ -16,7 +16,7 @@ describe('Headline component', () => { }); it('should have the assigned data test id', () => { - render({text} ); + render({text}); const rendered = screen.getByTestId(testId);