From 66045faf81ffedea0614b4b7552f48ea586806ef Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci <aar@cpan.org> Date: Tue, 14 Jan 2014 13:41:39 +0100 Subject: [PATCH] Fix error in t/support.t --- t/support.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/support.t b/t/support.t index 402ea33e8..13234619c 100644 --- a/t/support.t +++ b/t/support.t @@ -112,7 +112,7 @@ use Slic3r::Test; if ($layer_id <= $config->raft_layers) { # this is a raft layer or the first object layer my $line = Slic3r::Line->new_scale([ $self->X, $self->Y ], [ $info->{new_X}, $info->{new_Y} ]); - my @path = $line->grow(scale($config->support_material_extrusion_width/2)); + my @path = @{$line->grow(scale($config->support_material_extrusion_width/2))}; if ($layer_id < $config->raft_layers) { # this is a raft layer push @raft, @path;