Compare commits

..
3 changed files with 5 additions and 7 deletions
Generated
+1 -1
View File
@@ -149,7 +149,7 @@ checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
[[package]]
name = "icarus_models"
version = "0.7.1"
version = "0.7.0"
dependencies = [
"josekit",
"rand",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "icarus_models"
version = "0.7.1"
version = "0.7.0"
edition = "2024"
rust-version = "1.90"
description = "models used for the icarus project"
+3 -5
View File
@@ -114,11 +114,9 @@ mod tests {
#[test]
fn test_cover_art_image() {
let dir = String::from("./");
let filename = String::from("CoverArt.png");
let coverart = coverart::init::init_coverart_dir_and_filename(&dir, &filename);
let path: String = String::from("somepath");
let coverart = coverart::init::init_coverart_only_path(path.clone());
assert_eq!(dir, coverart.directory);
assert_eq!(filename, coverart.filename);
assert_eq!(path, coverart.path);
}
}