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
path: root/tests
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-04-26 08:13:26 +0300
committerCampbell Barton <campbell@blender.org>2022-04-26 08:16:11 +0300
commite0e737b72babf128409e3ab87e50a390ff4501e1 (patch)
treec47c925f113381964ff7761afe6bfab12535499f /tests
parente3724d29ffb753867ebd1c52f7b644fdcb2bba25 (diff)
Cleanup: line length for Python scripts
Diffstat (limited to 'tests')
-rw-r--r--tests/python/physics_particle_system.py13
1 files changed, 9 insertions, 4 deletions
diff --git a/tests/python/physics_particle_system.py b/tests/python/physics_particle_system.py
index f558df0aeb7..37e3df781b0 100644
--- a/tests/python/physics_particle_system.py
+++ b/tests/python/physics_particle_system.py
@@ -12,10 +12,15 @@ from modules.mesh_test import RunTest, ParticleSystemSpec, SpecMeshTest
def main():
test = [
- SpecMeshTest("ParticleSystemTest", "testParticleSystem", "expParticleSystem",
- [ParticleSystemSpec('Particles', 'PARTICLE_SYSTEM', {'render_type': "OBJECT",
- 'instance_object': bpy.data.objects['Cube']}, 20)], threshold=1e-3),
-
+ SpecMeshTest(
+ "ParticleSystemTest", "testParticleSystem", "expParticleSystem", [
+ ParticleSystemSpec(
+ 'Particles',
+ 'PARTICLE_SYSTEM',
+ {'render_type': "OBJECT", 'instance_object': bpy.data.objects['Cube']}, 20)
+ ],
+ threshold=1e-3,
+ ),
]
particle_test = RunTest(test)