From 6605880f4b90bad5a050054c9353cd8f98e2d164 Mon Sep 17 00:00:00 2001 From: Andrea Bogazzi Date: Sun, 18 Jan 2015 17:29:37 +0100 Subject: [PATCH] Update shadow.js --- test/unit/shadow.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'); }); })();