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>2019-02-25 11:11:20 +0300
committerbubnikv <bubnikv@gmail.com>2019-02-25 11:11:20 +0300
commitb4a61a3acb0544e56b90476dafd87acc42dce382 (patch)
tree2cfd1f75c9faacdad870f743131624bb5ce08c4f /t
parent6c2beeec36d1949431e432005f3fa499d3194c82 (diff)
Fixed unit test after splitting the external fill pattern to top/bottom.
Diffstat (limited to 't')
-rw-r--r--t/fill.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/fill.t b/t/fill.t
index 5cbd568dd..88cc35801 100644
--- a/t/fill.t
+++ b/t/fill.t
@@ -166,7 +166,8 @@ for my $pattern (qw(rectilinear honeycomb hilbertcurve concentric)) {
my $config = Slic3r::Config::new_from_defaults;
$config->set('nozzle_diameter', [0.4,0.4,0.4,0.4]);
$config->set('fill_pattern', $pattern);
- $config->set('external_fill_pattern', $pattern);
+ $config->set('top_fill_pattern', $pattern);
+ $config->set('bottom_fill_pattern', $pattern);
$config->set('perimeters', 1);
$config->set('skirts', 0);
$config->set('fill_density', 20);