From b4bd908d9467b53e83aed1a7a2a158a989e0fbfd Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Mon, 9 Feb 2026 21:13:52 +0000 Subject: [PATCH] nit test Co-Authored-By: Claude Opus 4.6 --- backend/tests/users.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/tests/users.rs b/backend/tests/users.rs index ceccbe70a3..352b3cc5c6 100644 --- a/backend/tests/users.rs +++ b/backend/tests/users.rs @@ -296,7 +296,7 @@ async fn test_user_endpoints(db: Pool) -> anyhow::Result<()> { .await .unwrap(); assert!( - resp.status() == 401 || resp.status() == 500, + resp.status() == 400 || resp.status() == 401 || resp.status() == 500, "login: unexpected status {}", resp.status() );