From 79c6b01c12e1701ded85f7b16c2d249aadc61084 Mon Sep 17 00:00:00 2001 From: Greg Burri Date: Wed, 7 May 2025 15:53:03 +0200 Subject: [PATCH] Change the test to the new language behavior --- backend/tests/http.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/tests/http.rs b/backend/tests/http.rs index 9d31fb6..11287bc 100644 --- a/backend/tests/http.rs +++ b/backend/tests/http.rs @@ -219,8 +219,7 @@ async fn sign_in() -> Result<(), Box> { response.assert_status_see_other(); // Redirection after successful sign in. response.assert_text(""); // English is the default language. - response.assert_header("location", "/en/?user_message=16&user_message_icon=0"); - dbg!(&response); + response.assert_header("location", "/?user_message=16&user_message_icon=0"); Ok(()) }