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_ocean.py')
-rw-r--r--tests/python/physics_ocean.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/python/physics_ocean.py b/tests/python/physics_ocean.py
index 40227d3d8d7..59eb71aa9f1 100644
--- a/tests/python/physics_ocean.py
+++ b/tests/python/physics_ocean.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 = [
# World coordinates of test and expected object should be same.
- MeshTest("PlaneOcean", "testObjPlaneOcean", "expObjPlaneOcean",
+ SpecMeshTest("PlaneOcean", "testObjPlaneOcean", "expObjPlaneOcean",
[ModifierSpec('Ocean', 'OCEAN', {})]),
]
ocean_test = RunTest(test)