Skip to content

Commit 8879fcb

Browse files
authored
test: fix crlf unit tests (#1850)
1 parent ee0a0f5 commit 8879fcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/svgo-node.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ describeCRLF('with CRLF line-endings', () => {
120120
});
121121
// using toEqual because line endings matter in these tests
122122
expect(data).toEqual(
123-
'<svg viewBox="0 0 120 120">\n <circle fill="red" cx="60" cy="60" r="50"/>\n</svg>\n'
123+
'<svg viewBox="0 0 120 120">\n <circle cx="60" cy="60" r="50" fill="red"/>\n</svg>\n'
124124
);
125125
});
126126
});

0 commit comments

Comments
 (0)