From 14f0f8cbc7d885cb052d7cb1de2e7d94cf9d62f7 Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Wed, 21 Nov 2012 00:30:18 +0000 Subject: [PATCH] Fixed a leaky global in the SvgExport test --- 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 0fc83579..d3cc9f11 100644 --- a/test/tests/SvgExport.js +++ b/test/tests/SvgExport.js @@ -357,7 +357,7 @@ test('compare ellipse values', function() { var shape = document.createElementNS(svgns, 'ellipse'); var cx = 100, cy = 80, - rx = 50; + rx = 50, ry = 30; shape.setAttribute('cx', cx); shape.setAttribute('cy', cy);