Skip to content

Commit

Permalink
Changed test parameter.
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbudden committed Sep 2, 2021
1 parent 50b2b28 commit 4e1a97b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_cadquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -2487,7 +2487,7 @@ def testConeDefaults(self):
self.assertEqual(1, s1.solids().size())
self.assertEqual(3, s1.faces().size())
self.assertEqual(2, s1.vertices().size())
s2 = Workplane("XY").cone(40, radius1=10, radius2=5, combine=True)
s2 = Workplane("XY").cone(40, radius1=10, radius2=5, combine=False)
self.assertEqual(1, s2.size())
self.assertEqual(1, s2.solids().size())
self.assertEqual(3, s2.faces().size())
Expand Down

0 comments on commit 4e1a97b

Please sign in to comment.