fix compilation

This commit is contained in:
Yann Simon 2024-11-30 15:14:53 +01:00
parent cb760ba45b
commit 4e4a0d9f67
No known key found for this signature in database

View file

@ -526,10 +526,10 @@ mod tests {
let client = TestClient::new(app);
let res = client.get("/").send().await;
let res = client.get("/").await;
assert_eq!(res.status(), StatusCode::INTERNAL_SERVER_ERROR);
let res = client.get("/two").send().await;
let res = client.get("/two").await;
assert_eq!(res.status(), StatusCode::IM_A_TEAPOT);
}
#[test]