File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -139,12 +139,16 @@ void check_colocation3D()
139139 OPENGEODE_EXCEPTION ( nb_colocated_points == 5 ,
140140 " [Test] (3D) Surface has wrong number of colocated points." );
141141 const std::vector< geode::index_t > first_colocated_points_group{ 0 , 1 , 6 };
142+ const std::vector< geode::index_t > second_colocated_points_group{ 3 , 5 };
142143 OPENGEODE_EXCEPTION (
143- colocated_points_groups.issues ()[0 ] == first_colocated_points_group,
144+ colocated_points_groups.issues ()[0 ] == first_colocated_points_group
145+ || colocated_points_groups.issues ()[0 ]
146+ == second_colocated_points_group,
144147 " [Test] (3D) Surface has wrong first colocated points group." );
145- const std::vector< geode::index_t > second_colocated_points_group{ 3 , 5 };
146148 OPENGEODE_EXCEPTION (
147- colocated_points_groups.issues ()[1 ] == second_colocated_points_group,
149+ colocated_points_groups.issues ()[1 ] == first_colocated_points_group
150+ || colocated_points_groups.issues ()[1 ]
151+ == second_colocated_points_group,
148152 " [Test] (3D) Surface has wrong second colocated points group." );
149153}
150154
You can’t perform that action at this time.
0 commit comments