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-12-02 05:22:00 +0300
committerHans Goudey <h.goudey@me.com>2021-12-02 05:22:00 +0300
commit2b6c01d98c404a74d2b1c8fb6c5807ef5695b9cb (patch)
tree6b2c4cd05c906b29ed202571d7d8190ef67423b2 /tests
parent70a0d45b6904d05e76b31b0256f722ddae07794c (diff)
Fix: Updating geometry nodes test results fails
I ran into this when adding new geometry nodes tests. The issue was caused by 7168a4fa5c785c29483. Differential Revision: https://developer.blender.org/D13440
Diffstat (limited to 'tests')
-rw-r--r--tests/python/modules/mesh_test.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/python/modules/mesh_test.py b/tests/python/modules/mesh_test.py
index 99313de92d4..e3990bc207b 100644
--- a/tests/python/modules/mesh_test.py
+++ b/tests/python/modules/mesh_test.py
@@ -373,8 +373,7 @@ class MeshTest(ABC):
bpy.data.objects.remove(self.expected_object, do_unlink=True)
self.evaluated_object.name = expected_object_name
- self.do_selection(self.evaluated_object.data,
- "VERT", evaluated_selection)
+ self.do_selection(self.evaluated_object.data, "VERT", evaluated_selection, False)
# Save file.
bpy.ops.wm.save_as_mainfile(filepath=bpy.data.filepath)