From 2a08342213d431fc2efb34d4930a5fae6dbc3d63 Mon Sep 17 00:00:00 2001 From: Lendemor Date: Sat, 14 Dec 2024 01:20:10 +0100 Subject: [PATCH] change tmp path for harness --- tests/integration/tests_playwright/test_link_hover.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/tests_playwright/test_link_hover.py b/tests/integration/tests_playwright/test_link_hover.py index 9ef38e50b..adf38342b 100644 --- a/tests/integration/tests_playwright/test_link_hover.py +++ b/tests/integration/tests_playwright/test_link_hover.py @@ -27,7 +27,7 @@ def LinkApp(): @pytest.fixture def link_app(tmp_path_factory) -> Generator[AppHarness, None, None]: with AppHarness.create( - root=tmp_path_factory.mktemp("appearance_app"), + root=tmp_path_factory.mktemp("link_app"), app_source=LinkApp, # type: ignore ) as harness: assert harness.app_instance is not None, "app is not running"