diff --git a/tests/test_cadquery.py b/tests/test_cadquery.py index 94c56e68d..70ed0b972 100644 --- a/tests/test_cadquery.py +++ b/tests/test_cadquery.py @@ -5487,3 +5487,8 @@ def test_toVtk(self): assert isinstance(vtk, vtkPolyData) assert vtk.GetNumberOfPolys() == 2 + + def test_clean(self): + + solid = Workplane().circle(15).extrude(until=40, both=True) + assert len(solid.faces().all()) == 3