diff --git a/test/unit/shadow.js b/test/unit/shadow.js index ddcfb79c..0a8312e7 100644 --- a/test/unit/shadow.js +++ b/test/unit/shadow.js @@ -155,10 +155,10 @@ var shadow = new fabric.Shadow({color: '#FF0000', offsetX: 10, offsetY: -10, blur: 2}); var object = new fabric.Object({fill: '#FF0000'}); - equal(shadow.toSVG(object), '\n\t\n\t\n\t\n\t\t\n\t\t\n\t\n\n'); + equal(shadow.toSVG(object), '\n\t\n\t\n\t\n\t\n\t\t\n\t\t\n\t\n\n'); shadow.color = '#000000'; - equal(shadow.toSVG(object), '\n\t\n\t\n\t\n\t\t\n\t\t\n\t\n\n'); + equal(shadow.toSVG(object), '\n\t\n\t\n\t\n\t\n\t\t\n\t\t\n\t\n\n'); }); })();