Skip to content

Commit db070a9

Browse files
committed
Update test_cadquery.py
1 parent f9b5b07 commit db070a9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/test_cadquery.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5250,17 +5250,17 @@ def test_MergeTags(self):
52505250
def test_combineWithBase(self):
52515251
# Test the helper mehod _combinewith
52525252

5253-
box = Workplane().box(10,10,10)
5253+
box = Workplane().box(10, 10, 10)
52545254
sphere = box.faces(">Z").sphere(2)
52555255
new_box = box._combineWithBase(sphere.val())
52565256

5257-
self.assertGreater(new_box.val().Volume(), box.val().Volume())
5257+
self.assertGreater(new_box.val().Volume(), box.val().Volume())
52585258

52595259
def test_cutFromBase(self):
52605260
# Test the helper method _cutFromBase
52615261

5262-
box = Workplane().box(10,10,10)
5262+
box = Workplane().box(10, 10, 10)
52635263
sphere = Workplane().sphere(2)
52645264
hoolow_box = box._cutFromBase(sphere.val())
52655265

5266-
self.assertGreater(box.val().Volume(), hoolow_box.val().Volume())
5266+
self.assertGreater(box.val().Volume(), hoolow_box.val().Volume())

0 commit comments

Comments
 (0)