Skip to content

Commit 6c53567

Browse files
Merge pull request #206 from fredroy/fix_unittest_getclassname
[SofaPython3.Test] Fix test following change of DAGNode.getCustomClassName
2 parents 443b93a + 3edf209 commit 6c53567

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [macos-10.15]
16-
sofa_branch: [master, v21.06]
16+
sofa_branch: [master]
1717
env:
1818
SOFA_ROOT: /opt/sofa
1919
SOFA_OS: MacOS

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [ubuntu-20.04]
16-
sofa_branch: [master, v21.06]
16+
sofa_branch: [master]
1717
env:
1818
SOFA_ROOT: /opt/sofa
1919
SOFA_OS: Linux

bindings/Sofa/tests/Core/Base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def test_addNewDataFromParent_brokenLink(self):
116116

117117
def test_getClassName(self):
118118
root = create_scene("root")
119-
self.assertEqual(root.getClassName(), "DAGNode")
119+
self.assertEqual(root.getClassName(), "Node")
120120

121121
def test_getTemplateName(self):
122122
root = create_scene("root")

0 commit comments

Comments
 (0)