From 98fb2d5e2a7e8989c703a215e895725e6a0d86da Mon Sep 17 00:00:00 2001 From: Masen Furer Date: Fri, 24 Jan 2025 17:24:26 -0800 Subject: [PATCH] Revert "fix integration test" This reverts commit a978684d70b59a077b714792603bcefd1939b41a. --- 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 6c841114a47..9510bd3587c 100644 --- a/tests/integration/tests_playwright/test_link_hover.py +++ b/tests/integration/tests_playwright/test_link_hover.py @@ -39,7 +39,7 @@ def test_link_hover(link_app: AppHarness, page: Page): assert link_app.frontend_url is not None page.goto(link_app.frontend_url) - link = page.get_by_role("link").nth(1) + link = page.get_by_role("link") expect(link).to_have_text("Click me") expect(link).to_have_css("color", "rgb(0, 0, 255)") link.hover()