More work for removing references to $Slic3r::Config

This commit is contained in:
Alessandro Ranellucci 2013-12-24 11:58:36 +01:00
parent 1157a7f859
commit 2956c1a2e5
4 changed files with 14 additions and 12 deletions

View file

@ -26,10 +26,10 @@ plan tests => 2;
{
my $thread = threads->create(sub {
# $print can't be inizialized outside the thread because Object->slice will
# modify it by removing meshes and popping layers
my $print = Slic3r::Test::init_print('20mm_cube');
Slic3r::Test::gcode($print);
{
my $print = Slic3r::Test::init_print('20mm_cube');
Slic3r::Test::gcode($print);
}
Slic3r::thread_cleanup();
return 1;
});