Skip to content

Commit

Permalink
test: fix crlf unit tests (#1850)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkenny54 committed Nov 26, 2023
1 parent ee0a0f5 commit 8879fcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/svgo-node.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
);
});
});
Expand Down

0 comments on commit 8879fcb

Please sign in to comment.