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
diff options
context:
space:
mode:
Diffstat (limited to 'tests/python/geo_node_test.py')
-rw-r--r--tests/python/geo_node_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/python/geo_node_test.py b/tests/python/geo_node_test.py
index 65ea500d2a1..9d7c634db76 100644
--- a/tests/python/geo_node_test.py
+++ b/tests/python/geo_node_test.py
@@ -13,5 +13,5 @@ geo_node_test = BlendFileTest("test_object", "expected_object", threshold=1e-4)
result = geo_node_test.run_test()
# Telling `ctest` about the failed test by raising Exception.
-if result == False:
+if not result:
raise Exception("Failed {}".format(geo_node_test.test_name))