Compare commits

..

1 Commits

Author SHA1 Message Date
3f66f4ee7b tsk-72: Test fix
All checks were successful
Rust Build / Check (pull_request) Successful in 1m1s
Rust Build / Clippy (pull_request) Successful in 51s
Rust Build / Rustfmt (pull_request) Successful in 1m10s
Rust Build / build (pull_request) Successful in 36s
Release Tagging / release (pull_request) Successful in 1m2s
Rust Build / Test Suite (pull_request) Successful in 1m44s
2025-10-18 20:25:51 -04:00

View File

@@ -114,9 +114,11 @@ mod tests {
#[test]
fn test_cover_art_image() {
let path: String = String::from("somepath");
let coverart = coverart::init::init_coverart_only_path(path.clone());
let dir = String::from("./");
let filename = String::from("CoverArt.png");
let coverart = coverart::init::init_coverart_dir_and_filename(&dir, &filename);
assert_eq!(path, coverart.path);
assert_eq!(dir, coverart.directory);
assert_eq!(filename, coverart.filename);
}
}