From 3e01710afbcaa6f407614c5b366e5b355bbaae5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20K=C3=BCnzel?= <simonk@fsmpi.rwth-aachen.de> Date: Sun, 13 Apr 2025 20:03:39 +0200 Subject: [PATCH] Fix tests --- api/tests/routes/resources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/tests/routes/resources.py b/api/tests/routes/resources.py index b379dff..f0b5d57 100644 --- a/api/tests/routes/resources.py +++ b/api/tests/routes/resources.py @@ -58,7 +58,7 @@ class ResourcesTest(ApiTest): "/resources/internal_auth_check", # Public None, headers=[ - ("X-Original-URI", re.sub("http", "invalidurlmodification", resp.headers["Location"])) + ("X-Original-URI", re.sub("http", "something/invalidurlmodification", resp.headers["Location"])) ], expected_response_status=HTTP_400_BAD_REQUEST, ) -- GitLab