From 84f00a64c5aa918d7f2fa21decf8dfec07d9ef41 Mon Sep 17 00:00:00 2001 From: hyOzd Date: Mon, 3 Aug 2015 23:07:48 +0300 Subject: [PATCH] removed `clean=True` from tests for consistency --- tests/TestCadQuery.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/TestCadQuery.py b/tests/TestCadQuery.py index 5ca264e..8e52f99 100644 --- a/tests/TestCadQuery.py +++ b/tests/TestCadQuery.py @@ -1067,18 +1067,18 @@ class TestCadQuery(BaseTest): # make a cube with a splitter edge on one of the faces # autosimplify should remove the splitter s = Workplane("XY").moveTo(0,0).line(5,0).line(5,0).line(0,10).\ - line(-10,0).close().extrude(10, clean=True) + line(-10,0).close().extrude(10) self.assertEqual(6, s.faces().size()) # test removal of splitter caused by union operation - s = Workplane("XY").box(10,10,10).union(Workplane("XY").box(20,10,10), clean=True) + s = Workplane("XY").box(10,10,10).union(Workplane("XY").box(20,10,10)) self.assertEqual(6, s.faces().size()) # test removal of splitter caused by extrude+combine operation s = Workplane("XY").box(10,10,10).faces(">Y").\ - workplane().rect(5,10,5).extrude(20, clean=True) + workplane().rect(5,10,5).extrude(20) self.assertEqual(10, s.faces().size())