Removed secrets
Some checks failed
Rust / Test (push) Has been cancelled
Rust / Rustfmt (push) Has been cancelled
Rust / Clippy (push) Has been cancelled
Rust / Code coverage (push) Has been cancelled

This commit is contained in:
Alphonse Paix
2025-09-22 16:22:46 +02:00
parent 4e18476f5e
commit ab650fdd35
8 changed files with 81 additions and 3 deletions

View File

@@ -108,5 +108,11 @@ async fn subscribe_fails_if_there_is_a_fatal_database_error() {
let response = app.post_subscriptions(body).await;
assert_eq!(response.status().as_u16(), 500);
assert!(
response
.text()
.await
.unwrap()
.contains("An internal server error occured")
);
}