Skip to content

Commit

Permalink
Accidentally added a perl test failure back in with merge.
Browse files Browse the repository at this point in the history
  • Loading branch information
lordofhyphens committed Jul 17, 2018
1 parent 0d69a6e commit d8cdccd
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions t/config.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use Test::More tests => 4;
use Test::More tests => 1;
use strict;
use warnings;

Expand All @@ -17,20 +17,6 @@ use Slic3r::Test;
ok $config->validate, 'percent extrusion width is validated';

my $print = Slic3r::Test::init_print('20mm_cube', config => $config, scale => 2);
{
my $invalid = $print->apply_config($config);
ok !($invalid), 're-applying same config does not invalidate';
}
$config->set('perimeters', 20);
{
my $invalid = $print->apply_config($config);
ok $invalid, 're-applying with changed perimeters does invalidate previous config';
}
$config->set('fill_density', '75%');
{
my $invalid = $print->apply_config($config);
ok $invalid, 're-applying with changed fill_density does invalidate previous config';
}
}

__END__

0 comments on commit d8cdccd

Please sign in to comment.