Skip to content

Commit 1a71340

Browse files
committed
fix copy paste
1 parent eaaa662 commit 1a71340

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bindings/python/tests/test-py-surface-colocation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,10 @@ def check_colocation3D():
115115
"[Test] (3D) Surface has wrong number of colocated points.")
116116
first_colocated_points_group = [0, 1, 6]
117117
second_colocated_points_group = [3, 5]
118-
if not not colocation_inspector.colocated_points_groups().issues()[0] == first_colocated_points_group and not colocation_inspector.colocated_points_groups().issues()[0] == second_colocated_points_group:
118+
if not colocation_inspector.colocated_points_groups().issues()[0] == first_colocated_points_group and not colocation_inspector.colocated_points_groups().issues()[0] == second_colocated_points_group:
119119
raise ValueError(
120120
"[Test] (3D) Surface has wrong first colocated points group.")
121-
if not not colocation_inspector.colocated_points_groups().issues()[1] == first_colocated_points_group and not colocation_inspector.colocated_points_groups().issues()[1] == second_colocated_points_group:
121+
if not colocation_inspector.colocated_points_groups().issues()[1] == first_colocated_points_group and not colocation_inspector.colocated_points_groups().issues()[1] == second_colocated_points_group:
122122
raise ValueError(
123123
"[Test] (3D) Surface has wrong second colocated points group.")
124124

0 commit comments

Comments
 (0)