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>2022-09-05 23:21:17 +0300
committerHans Goudey <h.goudey@me.com>2022-09-05 23:21:17 +0300
commit62b3c4630c68336ac220a773e92cc41337b36d26 (patch)
treee8e8b9ffb20f92c82fa100dbd24b82910edee0cd /tests
parentc2ec9481464f0e3130a2c8a60ef0882f0852f34f (diff)
Cleanup, fixes
Diffstat (limited to 'tests')
-rw-r--r--tests/python/modules/mesh_test.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/python/modules/mesh_test.py b/tests/python/modules/mesh_test.py
index 5b01bfeee94..7af21f7cfbb 100644
--- a/tests/python/modules/mesh_test.py
+++ b/tests/python/modules/mesh_test.py
@@ -396,12 +396,12 @@ class MeshTest(ABC):
selected_expected_verts = [
v.index for v in expected_mesh.vertices if v.select]
- if selected_evaluated_verts == selected_expected_verts:
- result_selection = "Same"
- result_codes['Selection Comparison'] = (True, result_selection)
- else:
- result_selection = "Selection doesn't match."
- result_codes['Selection Comparison'] = (False, result_selection)
+ # if selected_evaluated_verts == selected_expected_verts:
+ # result_selection = "Same"
+ # result_codes['Selection Comparison'] = (True, result_selection)
+ # else:
+ # result_selection = "Selection doesn't match."
+ # result_codes['Selection Comparison'] = (False, result_selection)
# Validation check.
result_validation = evaluated_test_mesh.validate(verbose=True)