Skip to content

Commit

Permalink
test/python: fix assert
Browse files Browse the repository at this point in the history
  • Loading branch information
jcarpent committed Jan 8, 2024
1 parent 890d227 commit 32e7856
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/python_unit/geometric_shapes.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ def test_convex(self):
hppfcl.Convex.convexHull(verts, False, None)
qhullAvailable = True
except Exception as e:
self.assertEqual(
str(e), "Library built without qhull. Cannot build object of this type."
self.assertIn(
"Library built without qhull. Cannot build object of this type.", str(e)
)
qhullAvailable = False

Expand Down

0 comments on commit 32e7856

Please sign in to comment.