Rust formatting
All checks were successful
Rust Build / Check (pull_request) Successful in 36s
Rust Build / Test Suite (pull_request) Successful in 52s
Rust Build / Rustfmt (pull_request) Successful in 22s
Rust Build / Clippy (pull_request) Successful in 38s
Rust Build / build (pull_request) Successful in 1m4s

This commit is contained in:
2025-05-31 21:49:03 -04:00
parent 853f8925ef
commit e1358953cb

View File

@@ -78,8 +78,9 @@ mod tests {
}
pub async fn generate_db_name() -> String {
let db_name =
get_database_name().await.unwrap() + &"_" + &uuid::Uuid::new_v4().to_string()[..LIMIT];
let db_name = get_database_name().await.unwrap()
+ &"_"
+ &uuid::Uuid::new_v4().to_string()[..LIMIT];
db_name
}