From 5e1b0c241599ffa98cd7e218a3c4d9dccce1d834 Mon Sep 17 00:00:00 2001 From: Frederick Roy Date: Wed, 13 Oct 2021 10:47:10 +0200 Subject: [PATCH 1/2] fix test following customName for DAGNode to Node (SOFA PR2395) --- bindings/Sofa/tests/Core/Base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/Sofa/tests/Core/Base.py b/bindings/Sofa/tests/Core/Base.py index 1b4849d0..e7be0f0a 100644 --- a/bindings/Sofa/tests/Core/Base.py +++ b/bindings/Sofa/tests/Core/Base.py @@ -116,7 +116,7 @@ def test_addNewDataFromParent_brokenLink(self): def test_getClassName(self): root = create_scene("root") - self.assertEqual(root.getClassName(), "DAGNode") + self.assertEqual(root.getClassName(), "Node") def test_getTemplateName(self): root = create_scene("root") From 3edf209f914db41cc5d12ef604f3c88b5d9c9b6b Mon Sep 17 00:00:00 2001 From: Frederick Roy Date: Wed, 13 Oct 2021 16:47:59 +0200 Subject: [PATCH 2/2] Warning: remove v21.06 from workflow fron now on --- .github/workflows/macos.yml | 2 +- .github/workflows/ubuntu.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index eaaf914b..44c3481d 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -13,7 +13,7 @@ jobs: fail-fast: false matrix: os: [macos-10.15] - sofa_branch: [master, v21.06] + sofa_branch: [master] env: SOFA_ROOT: /opt/sofa SOFA_OS: MacOS diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index b9f595ec..2cb94c5b 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -13,7 +13,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-20.04] - sofa_branch: [master, v21.06] + sofa_branch: [master] env: SOFA_ROOT: /opt/sofa SOFA_OS: Linux