Skip to content

Commit bb3c8c8

Browse files
committed
fix python
1 parent d5028e5 commit bb3c8c8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bindings/python/tests/test-py-brep.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -260,9 +260,9 @@ def check_model_mss(verbose):
260260
else:
261261
print("model mss topology is invalid.")
262262
nb_model_issues = launch_topological_validity_checks(result.topology, verbose)
263-
if nb_model_issues != 17:
263+
if nb_model_issues != 35:
264264
raise ValueError(
265-
"[Test] model mss.og_strm should have 34 topological problems."
265+
"[Test] model mss.og_strm should have 35 topological problems."
266266
)
267267
nb_component_meshes_issues = launch_component_meshes_validity_checks(
268268
result.meshes, verbose
@@ -283,9 +283,9 @@ def check_model_D(verbose):
283283
else:
284284
print("model_D topology is invalid.")
285285
nb_model_issues = launch_topological_validity_checks(result.topology, verbose)
286-
if nb_model_issues != 5:
286+
if nb_model_issues != 0:
287287
raise ValueError(
288-
"[Test] model model_D.og_brep should have 5 topological problems (blocks not meshed)."
288+
"[Test] model model_D.og_brep should have 0 topological problems (blocks not meshed)."
289289
)
290290
nb_component_meshes_issues = launch_component_meshes_validity_checks(
291291
result.meshes, verbose

0 commit comments

Comments
 (0)