From fea55be291a72e8672aad21e57adb831c9594100 Mon Sep 17 00:00:00 2001 From: Frederick Roy Date: Fri, 20 Sep 2024 15:38:23 +0900 Subject: [PATCH] update unittest --- bindings/SofaRuntime/tests/SofaRuntime/Base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/SofaRuntime/tests/SofaRuntime/Base.py b/bindings/SofaRuntime/tests/SofaRuntime/Base.py index d655bf8b..cbdd3985 100644 --- a/bindings/SofaRuntime/tests/SofaRuntime/Base.py +++ b/bindings/SofaRuntime/tests/SofaRuntime/Base.py @@ -12,5 +12,5 @@ def test_getCategoriesmethod(self): import SofaRuntime SofaRuntime.importPlugin("Sofa.Component") t = SofaRuntime.getCategories("MeshOBJLoader") - self.assertEquals(len(t),1) + self.assertEqual(len(t),1) self.assertIsInstance(t, list)