From a9b79bdd9766c86702fb221f324a50600634ee14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Hejl?= Date: Mon, 30 May 2022 08:19:50 +0200 Subject: [PATCH] Fixed unit tests. --- t/perimeters.t | 2 +- xs/xsp/PerimeterGenerator.xsp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/t/perimeters.t b/t/perimeters.t index d3f96f122..50aad45d6 100644 --- a/t/perimeters.t +++ b/t/perimeters.t @@ -51,7 +51,7 @@ use Slic3r::Test; ($fill_surfaces = Slic3r::Surface::Collection->new), ); $g->config->apply_dynamic($config); - $g->process; + $g->process_classic; is scalar(@$loops), scalar(@$expolygons), 'expected number of collections'; diff --git a/xs/xsp/PerimeterGenerator.xsp b/xs/xsp/PerimeterGenerator.xsp index a2f589d0b..91c6af532 100644 --- a/xs/xsp/PerimeterGenerator.xsp +++ b/xs/xsp/PerimeterGenerator.xsp @@ -36,5 +36,5 @@ Ref config() %code{% RETVAL = THIS->config; %}; - void process(); + void process_classic(); };