From 98bb2842d89cf811cf244798fcc325895a9b4318 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9ry=20Debongnie?= Date: Tue, 19 Oct 2021 16:45:04 +0200 Subject: [PATCH] [FIX] run prettier on codebase --- tests/qweb/qweb_memory.test.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/qweb/qweb_memory.test.ts b/tests/qweb/qweb_memory.test.ts index abb24d1f..c7afb8a7 100644 --- a/tests/qweb/qweb_memory.test.ts +++ b/tests/qweb/qweb_memory.test.ts @@ -5,10 +5,7 @@ describe("memory", () => { test("t-foreach does not leak stuff in global scope", () => { let qweb = new QWeb(); const initialNumberOfGlobals = Object.keys(window).length; - qweb.addTemplate( - "test", - `

` - ); + qweb.addTemplate("test", `

`); const result = renderToString(qweb, "test"); const expected = `

321

`; expect(result).toBe(expected);