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.
1 parent 108c1f7 commit 4c599f8Copy full SHA for 4c599f8
test/test_io_plumbing.py
@@ -460,11 +460,11 @@ class ChildComponent(Component):
460
assert len(all_loads) == 2, f"Expected 2 loads (parent + child), got {len(all_loads)}"
461
462
# First call should be for parent
463
- assert "/test/parent.txt" in all_loads[0]["path"]
+ assert "/test/parent.txt" in all_loads[0]["path"].replace("\\", "/")
464
assert all_loads[0]["format"] == MF6
465
466
# Second call should be for child
467
- assert "child1.txt" in all_loads[1]["path"]
+ assert "child1.txt" in all_loads[1]["path"].replace("\\", "/")
468
assert all_loads[1]["format"] == MF6
469
470
# IMPORTANT: Child should be loaded with cwd = parent's workspace
0 commit comments