topology: operations_generic: tests: geom_type() now returns GeomType enum

This commit is contained in:
BogdanTheGeek 2024-02-21 15:14:16 +00:00
parent d7c6c014f8
commit 355a53f52e
5 changed files with 40 additions and 85 deletions

View file

@ -486,7 +486,7 @@ class MirrorTests(unittest.TestCase):
revolve(axis=Axis.Z)
mirror(about=Plane.XY)
construction_face = p.faces().sort_by(Axis.Z)[0]
self.assertEqual(construction_face.geom_type(), "PLANE")
self.assertEqual(construction_face.geom_type(), GeomType.PLANE)
class OffsetTests(unittest.TestCase):