Skip to content

Commit 71e3e40

Browse files
committed
Update as per suggestions in review.
1 parent 727ab27 commit 71e3e40

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

cadquery/cq.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3832,7 +3832,7 @@ def cylinder(
38323832
:return: A cylinder object for each point on the stack
38333833
38343834
One cylinder is created for each item on the current stack. If no items are on the stack, one
3835-
box using the current workplane center is created.
3835+
cylinder using the current workplane center is created.
38363836
38373837
If combine is true, the result will be a single object on the stack. If a solid was found
38383838
in the chain, the result is that solid with all cylinders produced fused onto it otherwise,

tests/test_cadquery.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2445,7 +2445,6 @@ def testSphereCombine(self):
24452445

24462446
def testCylinderDefaults(self):
24472447
s = Workplane("XY").cylinder(20, 10)
2448-
self.saveModel(s)
24492448
self.assertEqual(1, s.size())
24502449
self.assertEqual(1, s.solids().size())
24512450
self.assertEqual(3, s.faces().size())

0 commit comments

Comments
 (0)