chore: cargo fmt --all
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -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()));
|
||||||
|
|||||||
Reference in New Issue
Block a user