From 9017bf17672285193c9b4601536231cca1524c3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Fri, 27 May 2016 11:37:59 +0200 Subject: [PATCH] Unit test: Fix PaperScript left-over in SVG Export. --- test/tests/SvgExport.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tests/SvgExport.js b/test/tests/SvgExport.js index 773438f7..6e4b803a 100644 --- a/test/tests/SvgExport.js +++ b/test/tests/SvgExport.js @@ -155,7 +155,7 @@ if (!isNode) { var radius = bounds.width * 0.4, from = new Point(bounds.center.x), - to = from + [radius, 0]; + to = from.add(radius, 0); var circle = new Path.Circle({ center: from,