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_particle_system.py')
-rw-r--r--tests/python/physics_particle_system.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/python/physics_particle_system.py b/tests/python/physics_particle_system.py
index 0adc5ab1c54..4f54b87e8b0 100644
--- a/tests/python/physics_particle_system.py
+++ b/tests/python/physics_particle_system.py
@@ -20,16 +20,15 @@
import os
import sys
-
import bpy
sys.path.append(os.path.dirname(os.path.realpath(__file__)))
-from modules.mesh_test import RunTest, ParticleSystemSpec, MeshTest
+from modules.mesh_test import RunTest, ParticleSystemSpec, SpecMeshTest
def main():
test = [
- MeshTest("ParticleSystemTest", "testParticleSystem", "expParticleSystem",
+ SpecMeshTest("ParticleSystemTest", "testParticleSystem", "expParticleSystem",
[ParticleSystemSpec('Particles', 'PARTICLE_SYSTEM', {'render_type': "OBJECT",
'instance_object': bpy.data.objects['Cube']}, 20)], threshold=1e-3),