Skip to content

Commit f9690f5

Browse files
committed
fix jest tests
1 parent 35adbfa commit f9690f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x-pack/legacy/plugins/maps/public/layers/styles/vector/symbol_utils.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ describe('styleSvg', () => {
3737
'<svg version="1.1" width="11px" height="11px" viewBox="0 0 11 11"><path/></svg>';
3838
const styledSvg = await styleSvg(unstyledSvgString, 'red', 'white');
3939
expect(styledSvg.split('\n')[1]).toBe(
40-
'<svg version=\"1.1\" width=\"11px\" height=\"11px\" viewBox=\"0 0 11 11\" style=\"fill:red;stroke:white;stroke-width:1;\">'
40+
'<svg version="1.1" width="11px" height="11px" viewBox="0 0 11 11" style="fill:red;stroke:white;stroke-width:1;">'
4141
);
4242
});
4343
});

0 commit comments

Comments
 (0)