Skip to content

Commit 4bf22a9

Browse files
committed
Update test_cadquery.py
1 parent 973dfda commit 4bf22a9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_cadquery.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ def testLoft(self):
491491
.loft(combine=True)
492492
)
493493

494-
self.assertGreater(add.val().Volume(),box.val().Volume())
494+
self.assertGreater(add.val().Volume(), box.val().Volume())
495495

496496
def testLoftRaisesValueError(self):
497497
s0 = Workplane().hLine(1) # no wires
@@ -1179,7 +1179,7 @@ def testSweep(self):
11791179
)
11801180
self.assertGreater(box.val().Volume(), cut.val().Volume())
11811181

1182-
#test sweep with combine = True
1182+
# test sweep with combine = True
11831183
box = Workplane().box(10, 10, 10, centered=False)
11841184
path = Workplane("YZ").lineTo(10, 10)
11851185
add = (
@@ -1188,7 +1188,7 @@ def testSweep(self):
11881188
.circle(1.5)
11891189
.sweep(path, combine=True)
11901190
)
1191-
self.assertGreater(add.val().Volume(),box.val().Volume())
1191+
self.assertGreater(add.val().Volume(), box.val().Volume())
11921192

11931193
def testMultisectionSweep(self):
11941194
"""

0 commit comments

Comments
 (0)