aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2025-04-23 21:41:13 +0200
committerDaniel Schadt <kingdread@gmx.de>2025-04-23 21:41:13 +0200
commitd6a2c46080d6c3d29909467d367e6b86f69904b9 (patch)
treeedb05e77e6d884ff99e0c2778765f827f0826315
parent94c598f00b1c2747419d87d3fa3cf7d6dbb0bf49 (diff)
downloadfietsboek-d6a2c46080d6c3d29909467d367e6b86f69904b9.tar.gz
fietsboek-d6a2c46080d6c3d29909467d367e6b86f69904b9.tar.bz2
fietsboek-d6a2c46080d6c3d29909467d367e6b86f69904b9.zip
fix profile test
We added the trailing slash some commits ago.
-rw-r--r--tests/playwright/test_profiles.py2
1 files changed, 1 insertions, 1 deletions
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):