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 7472910 commit 890d227
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/python_unit/geometric_shapes.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def test_convex(self):
hppfcl.Convex.convexHull(verts[:3], False, None)
except Exception as e:
self.assertIn(
str(e), "You shouldn't use this function with less than 4 points."
"You shouldn't use this function with less than 4 points.", str(e)
)


Expand Down

0 comments on commit 890d227

Please sign in to comment.