From a496ad737175069df402a566dc0a074cc458e2ad Mon Sep 17 00:00:00 2001 From: Hugo Date: Thu, 31 Aug 2023 10:42:04 +0200 Subject: [PATCH] Fix CI failing due to test_moduleImport (#370) --- 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 df49a1df..d655bf8b 100644 --- a/bindings/SofaRuntime/tests/SofaRuntime/Base.py +++ b/bindings/SofaRuntime/tests/SofaRuntime/Base.py @@ -11,6 +11,6 @@ def test_moduleImport(self): def test_getCategoriesmethod(self): import SofaRuntime SofaRuntime.importPlugin("Sofa.Component") - t = SofaRuntime.getCategories("MeshObjLoader") + t = SofaRuntime.getCategories("MeshOBJLoader") self.assertEquals(len(t),1) self.assertIsInstance(t, list)