Fixed unit tests.

This commit is contained in:
Lukáš Hejl 2022-05-30 08:19:50 +02:00
parent 3942cf958c
commit a9b79bdd97
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ use Slic3r::Test;
($fill_surfaces = Slic3r::Surface::Collection->new), ($fill_surfaces = Slic3r::Surface::Collection->new),
); );
$g->config->apply_dynamic($config); $g->config->apply_dynamic($config);
$g->process; $g->process_classic;
is scalar(@$loops), is scalar(@$loops),
scalar(@$expolygons), 'expected number of collections'; scalar(@$expolygons), 'expected number of collections';

View File

@ -36,5 +36,5 @@
Ref<StaticPrintConfig> config() Ref<StaticPrintConfig> config()
%code{% RETVAL = THIS->config; %}; %code{% RETVAL = THIS->config; %};
void process(); void process_classic();
}; };