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/t
diff options
context:
space:
mode:
authorVojtech Bubnik <bubnikv@gmail.com>2021-05-03 15:12:08 +0300
committerVojtech Bubnik <bubnikv@gmail.com>2021-05-03 15:12:08 +0300
commit0e6e60705ddec3d1d67d983c720b665d65380aaf (patch)
tree18cf7e338229632e2b6f80d6677e445587cf5218 /t
parent96f8744e05bc97e99f7c7db811a5ac17fe9858d5 (diff)
Fixing one unit test, which seems to indicate that the refactoring
fixed one issue (hopefully it was not that a newly introduced bug hides an old one).
Diffstat (limited to 't')
-rw-r--r--t/perimeters.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/perimeters.t b/t/perimeters.t
index d0657cb23..3d3fd3819 100644
--- a/t/perimeters.t
+++ b/t/perimeters.t
@@ -394,9 +394,9 @@ use Slic3r::Test;
});
return scalar keys %z_with_bridges;
};
- ok $test->(Slic3r::Test::init_print('V', config => $config)) == 1,
- 'no overhangs printed with bridge speed'; # except for the first internal solid layers above void
- ok $test->(Slic3r::Test::init_print('V', config => $config, scale_xyz => [3,1,1])) > 1,
+ ok $test->(Slic3r::Test::init_print('V', config => $config)) == 2,
+ 'no overhangs printed with bridge speed'; # except for the two internal solid layers above void
+ ok $test->(Slic3r::Test::init_print('V', config => $config, scale_xyz => [3,1,1])) > 2,
'overhangs printed with bridge speed';
}