Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/python/physics_softbody.py')
-rw-r--r--tests/python/physics_softbody.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/python/physics_softbody.py b/tests/python/physics_softbody.py
index 985b3a29bb4..6d4d4cc08d5 100644
--- a/tests/python/physics_softbody.py
+++ b/tests/python/physics_softbody.py
@@ -24,13 +24,13 @@ import sys
import bpy
sys.path.append(os.path.dirname(os.path.realpath(__file__)))
-from modules.mesh_test import RunTest, ModifierSpec, MeshTest
+from modules.mesh_test import RunTest, ModifierSpec, SpecMeshTest
def main():
test = [
- MeshTest("SoftBodySimple", "testSoftBody", "expectedSoftBody",
+ SpecMeshTest("SoftBodySimple", "testSoftBody", "expectedSoftBody",
[ModifierSpec('Softbody', 'SOFT_BODY',
{'settings': {'use_goal': False, 'bend': 8, 'pull': 0.8, 'push': 0.8}},
45)]),