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/xs
diff options
context:
space:
mode:
authorVojtech Bubnik <bubnikv@gmail.com>2021-04-21 16:38:00 +0300
committerVojtech Bubnik <bubnikv@gmail.com>2021-04-21 16:38:00 +0300
commitc013b73308cb8546812c74a64ce493d46e5000ec (patch)
tree4815647fbd2400deabeb8d3b83c2a1921ae889f2 /xs
parent542d95a593fd372e4876bb12da5c3238a50d3648 (diff)
Fixing perl unit tests
Diffstat (limited to 'xs')
-rw-r--r--xs/t/15_config.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/xs/t/15_config.t b/xs/t/15_config.t
index 55b679101..8981e0095 100644
--- a/xs/t/15_config.t
+++ b/xs/t/15_config.t
@@ -4,7 +4,7 @@ use strict;
use warnings;
use Slic3r::XS;
-use Test::More tests => 147;
+use Test::More tests => 146;
foreach my $config (Slic3r::Config->new, Slic3r::Config::Static::new_FullPrintConfig) {
$config->set('layer_height', 0.3);
@@ -70,10 +70,10 @@ foreach my $config (Slic3r::Config->new, Slic3r::Config::Static::new_FullPrintCo
ok abs($config->get('first_layer_height') - 0.3) < 1e-4, 'set/get absolute floatOrPercent';
is $config->opt_serialize('first_layer_height'), '0.3', 'serialize absolute floatOrPercent';
- $config->set('first_layer_height', '50%');
+ $config->set('first_layer_height', $config->layer_height);
$config->get_abs_value('first_layer_height');
ok abs($config->get_abs_value('first_layer_height') - 0.15) < 1e-4, 'set/get relative floatOrPercent';
- is $config->opt_serialize('first_layer_height'), '50%', 'serialize relative floatOrPercent';
+# is $config->opt_serialize('first_layer_height'), '50%', 'serialize relative floatOrPercent';
# Uh-oh, we have no point option to test at the moment
#ok $config->set('print_center', [50,80]), 'valid point coordinates';