cargo fix on server

This commit is contained in:
Priec
2025-10-26 16:07:19 +01:00
parent 492f1f1e55
commit 11185282c4
15 changed files with 7 additions and 20 deletions

View File

@@ -5,7 +5,7 @@
// ========================================================================
// Additional imports needed for these tests
use chrono::{DateTime, Utc};
use chrono::Utc;
use rust_decimal::Decimal;
use std::str::FromStr;

View File

@@ -8,7 +8,7 @@
// This is needed for the database error test.
#[fixture]
async fn closed_test_context() -> TestContext {
let mut context = test_context().await;
let context = test_context().await;
context.pool.close().await;
context
}