1
0
mirror of https://github.com/svg/svgo.git synced 2026-01-27 07:02:06 +03:00

test: fix crlf unit tests (#1850)

This commit is contained in:
johnkenny54
2023-11-26 07:27:28 -08:00
committed by GitHub
parent ee0a0f5130
commit 8879fcbbab

View File

@@ -120,7 +120,7 @@ describeCRLF('with CRLF line-endings', () => {
});
// using toEqual because line endings matter in these tests
expect(data).toEqual(
'<svg viewBox="0 0 120 120">\n <circle fill="red" cx="60" cy="60" r="50"/>\n</svg>\n'
'<svg viewBox="0 0 120 120">\n <circle cx="60" cy="60" r="50" fill="red"/>\n</svg>\n'
);
});
});