From 8879fcbbabdc31faa40ca47a3e78a8f821bc4563 Mon Sep 17 00:00:00 2001
From: johnkenny54 <45182853+johnkenny54@users.noreply.github.com>
Date: Sun, 26 Nov 2023 07:27:28 -0800
Subject: [PATCH] test: fix crlf unit tests (#1850)
---
lib/svgo-node.test.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/svgo-node.test.js b/lib/svgo-node.test.js
index 76972e7b..b4aeeff2 100644
--- a/lib/svgo-node.test.js
+++ b/lib/svgo-node.test.js
@@ -120,7 +120,7 @@ describeCRLF('with CRLF line-endings', () => {
});
// using toEqual because line endings matter in these tests
expect(data).toEqual(
- '\n'
+ '\n'
);
});
});