From d6a2c46080d6c3d29909467d367e6b86f69904b9 Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Wed, 23 Apr 2025 21:41:13 +0200 Subject: fix profile test We added the trailing slash some commits ago. --- tests/playwright/test_profiles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playwright/test_profiles.py b/tests/playwright/test_profiles.py index 7e5fb3c..ffbaab0 100644 --- a/tests/playwright/test_profiles.py +++ b/tests/playwright/test_profiles.py @@ -5,7 +5,7 @@ def test_forbidden(page: Page, playwright_helper): john = playwright_helper.john_doe() with page.expect_response(lambda resp: resp.status == 403): - page.goto(f"/user/{john.id}") + page.goto(f"/user/{john.id}/") def test_profile(page: Page, playwright_helper): -- cgit v1.2.3