Change the test to the new language behavior

This commit is contained in:
Greg Burri 2025-05-07 15:53:03 +02:00
parent a175595e23
commit 79c6b01c12

View file

@ -219,8 +219,7 @@ async fn sign_in() -> Result<(), Box<dyn Error>> {
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(())
}