Browse Source

Fixed unit test after splitting the external fill pattern to top/bottom.

bubnikv 6 years ago
parent
commit
b4a61a3acb
1 changed files with 2 additions and 1 deletions
  1. 2 1
      t/fill.t

+ 2 - 1
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);