fix lints

This commit is contained in:
2025-07-24 17:34:16 +01:00
parent a69cf540fe
commit e7107db9f2
2 changed files with 4 additions and 3 deletions

View File

@ -14,6 +14,7 @@ default := 'run'
watch CMD=default:
watchexec -w src -r just {{CMD}}
alias check:=lint
lint *ARGS:
cargo clippy -- -Dwarnings -Dclippy::correctness -Wclippy::pedantic -Wclippy::perf -Aclippy::missing_errors_doc -Aclippy::missing_panics_doc {{ARGS}}
cargo clippy --all-targets -- -Dwarnings -Dclippy::correctness -Wclippy::pedantic -Wclippy::perf -Aclippy::missing_errors_doc -Aclippy::missing_panics_doc {{ARGS}}

View File

@ -3,7 +3,7 @@ use std::{sync::LazyLock, time::Duration};
use http::StatusCode;
use reqwest::Client;
static client: LazyLock<Client> = LazyLock::new(|| {
static CLIENT: LazyLock<Client> = LazyLock::new(|| {
Client::builder()
.timeout(Duration::from_secs(10))
.connect_timeout(Duration::from_secs(5))
@ -13,7 +13,7 @@ static client: LazyLock<Client> = LazyLock::new(|| {
#[tokio::test]
async fn test_healthcheck_returns_healthy() {
let resp = client
let resp = CLIENT
.get("http://localhost:7001/healthcheck")
.send()
.await