[Bf-blender-cvs] [ad3afa02af6] soc-2021-geometry-nodes-regression-test: Minor Fix: create_evaluated_object method changed return type fix

Himanshi Kalra noreply at git.blender.org
Wed Jul 21 17:18:21 CEST 2021


Commit: ad3afa02af6b6901539e747225e299386f9c37ec
Author: Himanshi Kalra
Date:   Wed Jul 21 20:48:00 2021 +0530
Branches: soc-2021-geometry-nodes-regression-test
https://developer.blender.org/rBad3afa02af6b6901539e747225e299386f9c37ec

Minor Fix: create_evaluated_object method changed return type fix

===================================================================

M	tests/python/modules/mesh_test.py

===================================================================

diff --git a/tests/python/modules/mesh_test.py b/tests/python/modules/mesh_test.py
index 78da41f4dee..4cf545d3292 100644
--- a/tests/python/modules/mesh_test.py
+++ b/tests/python/modules/mesh_test.py
@@ -207,8 +207,8 @@ class MeshTest(ABC):
         """
         if self.verbose:
             print("Creating expected object...")
-        evaluated_object = self.create_evaluated_object()
-        self.expected_object = evaluated_object
+        self.create_evaluated_object()
+        self.expected_object = self.evaluated_object
         self.expected_object.name = self.exp_object_name
         x, y, z = self.test_object.location
         self.expected_object.location = (x, y+10, z)



More information about the Bf-blender-cvs mailing list