diff --git a/crates/handlers/src/health.rs b/crates/handlers/src/health.rs index da13c286..18665f9b 100644 --- a/crates/handlers/src/health.rs +++ b/crates/handlers/src/health.rs @@ -39,7 +39,7 @@ mod tests { #[sqlx::test(migrator = "mas_storage::MIGRATOR")] async fn test_get_health(pool: PgPool) -> Result<(), anyhow::Error> { let state = crate::test_state(pool).await?; - let app = crate::api_router(state); + let app = crate::router(state); let request = Request::builder().uri("/health").body(Body::empty())?;