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

@@ -20,7 +20,6 @@ use server::indexer::IndexCommand;
use sqlx::Row;
use rand::distr::Alphanumeric;
use rand::Rng;
use rust_decimal::prelude::FromPrimitive;
// Helper function to generate unique identifiers for test isolation
fn generate_unique_id() -> String {
@@ -154,7 +153,7 @@ async fn test_context() -> TestContext {
#[fixture]
async fn closed_test_context() -> TestContext {
let mut context = test_context().await;
let context = test_context().await;
context.pool.close().await;
context
}