From a9054d9a9840a9c7103083512222cc1739910587 Mon Sep 17 00:00:00 2001 From: Jonathan McCumber Date: Mon, 6 Jul 2026 09:18:50 -0500 Subject: [PATCH] chore: cargo fmt --all Co-Authored-By: Claude Sonnet 4.6 --- src/network/network_tests.rs | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/network/network_tests.rs b/src/network/network_tests.rs index a55079a..2b14efc 100644 --- a/src/network/network_tests.rs +++ b/src/network/network_tests.rs @@ -360,10 +360,13 @@ mod tests { .mock("GET", "/test") .match_header("X-Api-Key", "test1234") .with_status(500) - .with_body(json!({ - "message": "database is locked\ndatabase is locked", - "description": "at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker" - }).to_string()) + .with_body( + json!({ + "message": "database is locked\ndatabase is locked", + "description": "at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker" + }) + .to_string(), + ) .create_async() .await; let app_arc = Arc::new(Mutex::new(App::test_default()));