We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3f3b862 + db1ca88 commit 9a87fbbCopy full SHA for 9a87fbb
tests/integration/test_repair_tools.py
@@ -380,7 +380,7 @@ def test_find_and_fix_split_edges(modeler: Modeler):
380
"""Test to read geometry, find and fix split edges and validate they are fixed removed."""
381
design = modeler.open_file(FILES_DIR / "bracket-with-split-edges.scdocx")
382
assert len(design.bodies[0].edges) == 304
383
- split_edges = modeler.repair_tools.find_split_edges(design.bodies, 150, 0.0001)
+ split_edges = modeler.repair_tools.find_split_edges(design.bodies, 0.0001, 150)
384
assert len(split_edges) == 166
385
for i in split_edges:
386
try: # Try/Except is a workaround. Having .alive would be better
0 commit comments