From f3f9aaf4f716df49cdcd5440741d0c2bebf93064 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=B8=D0=BB=D1=8C=D1=8F=20=5F?= Date: Fri, 4 Apr 2025 11:52:16 +0200 Subject: [PATCH] Fix: Tests: Geometry Nodes tests ignore threshold value Base constructor ask test name as the third argument, so threshold have to be named parameter in case test name is not mentioned Pull Request: https://projects.blender.org/blender/blender/pulls/134300 --- tests/python/modules/mesh_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python/modules/mesh_test.py b/tests/python/modules/mesh_test.py index e4f27c800ec..501217d9657 100644 --- a/tests/python/modules/mesh_test.py +++ b/tests/python/modules/mesh_test.py @@ -740,7 +740,7 @@ class BlendFileTest(MeshTest): """ def __init__(self, test_object_name, exp_object_name, threshold=None): - super().__init__(test_object_name, exp_object_name, threshold) + super().__init__(test_object_name, exp_object_name, threshold=threshold) if bpy.data.objects[test_object_name].get("allow_index_change"): self.allow_index_change = True