Skip to content

Commit

Permalink
Merge pull request #607 from marcus7070/fix-rect-in-tests
Browse files Browse the repository at this point in the history
fix .rect calls in tests
  • Loading branch information
jmwright authored Jan 30, 2021
2 parents 36d4178 + 490f272 commit 68bac66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_cadquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -2258,7 +2258,7 @@ def testClean(self):
.box(10, 10, 10)
.faces(">Y")
.workplane()
.rect(5, 10, 5)
.rect(5, 10, True)
.extrude(20)
)

Expand Down Expand Up @@ -2329,7 +2329,7 @@ def testNoClean(self):
.box(10, 10, 10)
.faces(">Y")
.workplane()
.rect(5, 10, 5)
.rect(5, 10, True)
.extrude(20, clean=False)
)

Expand Down

0 comments on commit 68bac66

Please sign in to comment.