Skip to content

Commit eaa58fd

Browse files
committed
Use pathlib join with string
1 parent c089a2e commit eaa58fd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

server/tests/test_bash_ioc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
encoding="utf-8",
2525
)
2626

27-
setup_compose = ComposeFixtureFactory(Path("tests") / Path("docker") / Path("test-bash-ioc.yml")).return_fixture()
27+
setup_compose = ComposeFixtureFactory(Path("tests") / "docker" / "test-bash-ioc.yml").return_fixture()
2828

2929

3030
def docker_exec_new_command(container: Container, command: str, env: dict | None = None) -> None:

server/tests/test_multiple_recceiver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# 4 iocs, 1 channel 1 alias in archive.db
1616
EXPECTED_DEFAULT_CHANNEL_COUNT = 4 * 2
1717

18-
setup_compose = ComposeFixtureFactory(Path("tests") / Path("docker") / Path("test-multi-recc.yml")).return_fixture()
18+
setup_compose = ComposeFixtureFactory(Path("tests") / "docker" / "test-multi-recc.yml").return_fixture()
1919

2020

2121
@pytest.fixture(scope="class")

server/tests/test_single_ioc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
EXPECTED_DEFAULT_CHANNEL_COUNT = 2
3030

31-
setup_compose = ComposeFixtureFactory(Path("tests") / Path("docker") / Path("test-single-ioc.yml")).return_fixture()
31+
setup_compose = ComposeFixtureFactory(Path("tests") / "docker" / "test-single-ioc.yml").return_fixture()
3232

3333

3434
@pytest.fixture(scope="class")

0 commit comments

Comments
 (0)