Run cargo fmt

This commit is contained in:
Cameron
2025-08-11 17:08:24 -04:00
parent 88114ef4d4
commit 6aa3c932fb
3 changed files with 5 additions and 5 deletions

View File

@@ -518,7 +518,7 @@ mod tests {
use crate::tags::SqliteTagDao;
use actix_web::test::TestRequest;
use actix_web::web::Data;
use std::{fs, sync::Arc};
use std::fs;
fn setup() {
let _ = env_logger::builder().is_test(true).try_init();
@@ -781,8 +781,8 @@ mod tests {
assert!(is_valid_full_path(&base, &test_file, false).is_some());
assert_eq!(
Some(PathBuf::from(test_file.clone())),
is_valid_full_path(&base, &PathBuf::from(test_file), false)
Some(test_file.clone()),
is_valid_full_path(&base, &test_file, false)
);
}