From ed050089d9675b42b21f45d743c97161ce9c2d1a Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Tue, 15 Nov 2011 19:23:29 +0100 Subject: [PATCH] Removed SVG debug codes left (as always) in a unit test --- t/collinear.t | 5 ----- 1 file changed, 5 deletions(-) diff --git a/t/collinear.t b/t/collinear.t index e09d02224..5ca55fe78 100644 --- a/t/collinear.t +++ b/t/collinear.t @@ -81,11 +81,6 @@ use Slic3r::Geometry qw(collinear); ); is collinear($lines[0], $lines[1], 0), 0, 'not collinear'; is collinear($lines[0], $lines[1], 1), 0, 'not collinear'; - - use Slic3r::SVG; - Slic3r::SVG::output(undef, "collinear.svg", - lines => \@lines, - ); } #==========================================================