Fix OFF for new numpy errors

Summary: Error messages have changed around numpy version 2, making existing code fail.

Reviewed By: MichaelRamamonjisoa

Differential Revision: D65280674

fbshipit-source-id: b3ae613ea8f0f4ae20fb6e5e816314b8c10e6c65
This commit is contained in:
Jeremy Reizenstein
2024-11-06 11:13:59 -08:00
committed by Facebook GitHub Bot
parent 9563ef79ca
commit dd2a11b5fc
2 changed files with 5 additions and 5 deletions

View File

@@ -286,15 +286,15 @@ class TestMeshOffIO(TestCaseMixin, unittest.TestCase):
lines2 = lines.copy()
lines2[0] = "6 2 0"
with self.assertRaisesRegex(ValueError, "Wrong number of columns at line 5"):
with self.assertRaisesRegex(ValueError, "number of columns"):
load(lines2)
lines2[0] = "5 1 0"
with self.assertRaisesRegex(ValueError, "Wrong number of columns at line 5"):
with self.assertRaisesRegex(ValueError, "number of columns"):
load(lines2)
lines2[0] = "16 2 0"
with self.assertRaisesRegex(ValueError, "Wrong number of columns at line 5"):
with self.assertRaisesRegex(ValueError, "number of columns"):
load(lines2)
lines2[0] = "3 3 0"
@@ -312,7 +312,7 @@ class TestMeshOffIO(TestCaseMixin, unittest.TestCase):
lines2 = lines.copy()
lines2[2] = "7.3 4.2 8.3 932"
with self.assertRaisesRegex(ValueError, "Wrong number of columns at line 2"):
with self.assertRaisesRegex(ValueError, "number of columns"):
load(lines2)
lines2[1] = "7.3 4.2 8.3 932"