Skip to content

Commit 9a87fbb

Browse files
committed
Merge branch 'fix/fix_split_edges_test' into feat/download_stride
2 parents 3f3b862 + db1ca88 commit 9a87fbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/test_repair_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ def test_find_and_fix_split_edges(modeler: Modeler):
380380
"""Test to read geometry, find and fix split edges and validate they are fixed removed."""
381381
design = modeler.open_file(FILES_DIR / "bracket-with-split-edges.scdocx")
382382
assert len(design.bodies[0].edges) == 304
383-
split_edges = modeler.repair_tools.find_split_edges(design.bodies, 150, 0.0001)
383+
split_edges = modeler.repair_tools.find_split_edges(design.bodies, 0.0001, 150)
384384
assert len(split_edges) == 166
385385
for i in split_edges:
386386
try: # Try/Except is a workaround. Having .alive would be better

0 commit comments

Comments
 (0)