diff --git a/examples/SVG Export/Circle Testing.html b/examples/SVG Export/Circle Testing.html
index 4959e0a2..a3b46560 100644
--- a/examples/SVG Export/Circle Testing.html
+++ b/examples/SVG Export/Circle Testing.html
@@ -25,13 +25,8 @@
var path = new Path.Circle(new Point(50, 50), 25);
path.fillColor = 'red';
- var output = SvgExporter.exportProject(project);
- console.log(output);
- var test = document.getElementById('svg')
- test.innerHTML = "";
- test.appendChild (output);
+ document.getElementById('svg').appendChild(project.exportSvg());
-
+