From 059b3a4b4260de3a464456450ef5cb7963072c78 Mon Sep 17 00:00:00 2001 From: Markus Lampert Date: Sat, 23 Sep 2017 13:28:41 -0700 Subject: [PATCH] Adapted dogbone unit test to the new depth values. --- src/Mod/Path/PathTests/TestPathDressupDogbone.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Mod/Path/PathTests/TestPathDressupDogbone.py b/src/Mod/Path/PathTests/TestPathDressupDogbone.py index cd8c804aa7..ef6e669919 100644 --- a/src/Mod/Path/PathTests/TestPathDressupDogbone.py +++ b/src/Mod/Path/PathTests/TestPathDressupDogbone.py @@ -117,6 +117,12 @@ class TestDressupDogbone(PathTestBase): profile = PathProfileFaces.Create('Profile Faces') profile.Base = (cut, face) profile.StepDown = 5 + # set start and final depth in order to eliminate effects of stock (and its default values) + profile.StartDepthLock = True + profile.StartDepth = 10 + profile.FinalDepthLock = True + profile.FinalDepth = 0 + profile.processHoles = True profile.processPerimeter = True doc.recompute()