change tmp path for harness

This commit is contained in:
Lendemor 2024-12-14 01:20:10 +01:00
parent 0e3d1fb4f6
commit 2a08342213

View File

@ -27,7 +27,7 @@ def LinkApp():
@pytest.fixture @pytest.fixture
def link_app(tmp_path_factory) -> Generator[AppHarness, None, None]: def link_app(tmp_path_factory) -> Generator[AppHarness, None, None]:
with AppHarness.create( with AppHarness.create(
root=tmp_path_factory.mktemp("appearance_app"), root=tmp_path_factory.mktemp("link_app"),
app_source=LinkApp, # type: ignore app_source=LinkApp, # type: ignore
) as harness: ) as harness:
assert harness.app_instance is not None, "app is not running" assert harness.app_instance is not None, "app is not running"