From b4a61a3acb0544e56b90476dafd87acc42dce382 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Mon, 25 Feb 2019 09:11:20 +0100 Subject: [PATCH] Fixed unit test after splitting the external fill pattern to top/bottom. --- t/fill.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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);