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
path: root/t
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2018-04-26 10:53:03 +0300
committerbubnikv <bubnikv@gmail.com>2018-04-26 10:53:03 +0300
commita731b0e406d46fc276dd76edc54e73ba4d03f3ba (patch)
treeefc1f8907ca5534148b9829d4d85c312f3cab4aa /t
parentc60d825b47c10e8cafa0702520ac73fdb83e13bc (diff)
New cooling logic back-ported from 1.40.
Diffstat (limited to 't')
-rw-r--r--t/cooling.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/cooling.t b/t/cooling.t
index ee4f6abea..f69b7e8a8 100644
--- a/t/cooling.t
+++ b/t/cooling.t
@@ -2,7 +2,7 @@ use Test::More;
use strict;
use warnings;
-plan tests => 15;
+plan tests => 14;
BEGIN {
use FindBin;
@@ -203,8 +203,8 @@ $config->set('disable_fan_first_layers', [ 0 ]);
ok $all_below, 'slowdown_below_layer_time is honored';
# check that all layers have at least one unaltered external perimeter speed
- my $external = all { $_ > 0 } values %layer_external;
- ok $external, 'slowdown_below_layer_time does not alter external perimeters';
+# my $external = all { $_ > 0 } values %layer_external;
+# ok $external, 'slowdown_below_layer_time does not alter external perimeters';
}
__END__