Skip to content

Commit 60f86dc

Browse files
authored
Merge pull request #651 from zapta/develop
Fixed the test that breaks on Windows
2 parents abbc5ec + ff38974 commit 60f86dc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/unit_tests/commands/test_apio_api.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,11 +154,11 @@ def test_apio_api_get_project(apio_runner: ApioRunner):
154154
"synth-files": [
155155
"synth0.v",
156156
"tb_0.sv",
157-
"src1/synth1.sv",
158-
"src1/synth2.sv",
157+
f"src1{os.sep}synth1.sv",
158+
f"src1{os.sep}synth2.sv",
159159
],
160160
"test-benches": [
161-
"src1/tb1_tb.sv",
161+
f"src1{os.sep}tb1_tb.sv",
162162
],
163163
},
164164
}

0 commit comments

Comments
 (0)