Update extrude both test to be independent of clean

This commit is contained in:
gumyr 2023-07-25 15:18:42 -04:00
parent bf1a46f853
commit c11cabab81

View file

@ -699,8 +699,7 @@ class OperationsTests(unittest.TestCase):
def test_extrude_both(self):
s = Circle(1)
p = extrude(s, amount=1, both=True)
p = chamfer(p.edges().filter_by(GeomType.CIRCLE), 0.3)
self.assertEqual(len(p.edges().filter_by(GeomType.CIRCLE)), 5)
self.assertAlmostEqual(p.bounding_box().size.Z, 2, 4)
class RightMultipleTests(unittest.TestCase):