chore: cargo fmt --all

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Jonathan McCumber
2026-07-06 09:18:50 -05:00
parent 645ca19d76
commit a9054d9a98
+7 -4
View File
@@ -360,10 +360,13 @@ mod tests {
.mock("GET", "/test") .mock("GET", "/test")
.match_header("X-Api-Key", "test1234") .match_header("X-Api-Key", "test1234")
.with_status(500) .with_status(500)
.with_body(json!({ .with_body(
"message": "database is locked\ndatabase is locked", json!({
"description": "at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker" "message": "database is locked\ndatabase is locked",
}).to_string()) "description": "at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker"
})
.to_string(),
)
.create_async() .create_async()
.await; .await;
let app_arc = Arc::new(Mutex::new(App::test_default())); let app_arc = Arc::new(Mutex::new(App::test_default()));