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:
authorHans Goudey <h.goudey@me.com>2021-01-13 08:54:46 +0300
committerHans Goudey <h.goudey@me.com>2021-01-13 08:54:46 +0300
commit3f7c294a950ecdc5491c57c4ee7916bb87de4d6a (patch)
treee70a169b9e900acb5854ee6f54afa44f14d17828 /tests
parent97a6b3ceee5349de737bf106afaf086e49ac2f45 (diff)
Mix modifiers test after commit to bevel modifier defaults
{rB6b5e4ad5899d} neglected to update the modifier tests to reflect the fact that the default limit method is no longer "NONE".
Diffstat (limited to 'tests')
-rw-r--r--tests/python/modifiers.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/python/modifiers.py b/tests/python/modifiers.py
index 10393a0f493..09de29df401 100644
--- a/tests/python/modifiers.py
+++ b/tests/python/modifiers.py
@@ -45,7 +45,7 @@ def get_generate_modifiers_list(test_object_name, randomize=False):
generate_modifiers = [
ModifierSpec('array', 'ARRAY', {}),
- ModifierSpec('bevel', 'BEVEL', {'width': 0.1}),
+ ModifierSpec('bevel', 'BEVEL', {'width': 0.1, 'limit_method': 'NONE'}),
ModifierSpec('boolean', 'BOOLEAN', {'object': boolean_test_object, 'solver': 'FAST'}),
ModifierSpec('build', 'BUILD', {'frame_start': 1, 'frame_duration': 1}, 2),
ModifierSpec('decimate', 'DECIMATE', {}),
@@ -284,7 +284,7 @@ def main():
[ModifierSpec('array', 'ARRAY', {})]),
MeshTest("CurveBevel", "testObjBezierCurveBevel", "expObjBezierCurveBevel",
- [ModifierSpec('bevel', 'BEVEL', {})]),
+ [ModifierSpec('bevel', 'BEVEL', {'limit_method': 'NONE'})]),
MeshTest("CurveBuild", "testObjBezierCurveBuild", "expObjBezierCurveBuild",
[ModifierSpec('build', 'BUILD', {'frame_start': 1, 'frame_duration': 1}, 2)]),