Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Ranellucci <aar@cpan.org>2013-07-30 14:15:40 +0400
committerAlessandro Ranellucci <aar@cpan.org>2013-07-30 14:15:40 +0400
commit4e13d61aed23a402ab1139177f55412d6a88a8c0 (patch)
treed8a6b2091d3d4df91aff4cbbffbf3cc24bf73133 /t/layers.t
parent913f401280130831cdd3d2315b864b6ab60043c8 (diff)
Fix retraction/Z/lift problems after recent changes
Diffstat (limited to 't/layers.t')
-rw-r--r--t/layers.t13
1 files changed, 1 insertions, 12 deletions
diff --git a/t/layers.t b/t/layers.t
index e4fdcb9f9..6ee92cf2e 100644
--- a/t/layers.t
+++ b/t/layers.t
@@ -1,4 +1,4 @@
-use Test::More tests => 5;
+use Test::More tests => 4;
use strict;
use warnings;
@@ -56,15 +56,4 @@ ok $test->(), "positive Z offset";
$config->set('z_offset', -0.8);
ok $test->(), "negative Z offset";
-{
- my $config = Slic3r::Config->new_from_defaults;
- $config->set('nozzle_diameter', [0.35]);
- $config->set('layer_height', 0.1333);
-
- my $print = Slic3r::Test::init_print('2x20x10', config => $config);
- $print->init_extruders;
- $_->region(0) for @{$print->objects->[0]->layers}; # init layer regions
- ok $print->objects->[0]->layers->[1]->support_material_contact_height > 0, 'support_material_contact_height is positive';
-}
-
__END__