From 751cb912064072f4bcf945566aa10391e7f594be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Ribaudo?= Date: Tue, 7 May 2024 14:25:50 +0200 Subject: [PATCH] Fix lint error --- test/integration/text_layer_spec.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/text_layer_spec.mjs b/test/integration/text_layer_spec.mjs index bb73e8182cf611..55bc14ede08d10 100644 --- a/test/integration/text_layer_spec.mjs +++ b/test/integration/text_layer_spec.mjs @@ -54,7 +54,7 @@ describe("Text layer", () => { const TOLERANCE = 10; const actual = await page.evaluate(() => - // We need to replace EOL on Windows to match the expected string. + // We need to normalize EOL for Windows window.getSelection().toString().replaceAll("\r\n", "\n") );