From 1b0b5bd16492666a69ed982f07ab17e189cdc348 Mon Sep 17 00:00:00 2001 From: Antoine Gersant <antoine.gersant@lesforges.org> Date: Mon, 3 Feb 2025 18:10:43 -0800 Subject: [PATCH] Fixed broken test --- src/app/index/collection.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app/index/collection.rs b/src/app/index/collection.rs index 5730eb9..6575fb0 100644 --- a/src/app/index/collection.rs +++ b/src/app/index/collection.rs @@ -1044,12 +1044,16 @@ mod test { scanner::Song { virtual_path: PathBuf::from("Kai.mp3"), title: Some("Kai".to_owned()), + album: Some("ISDN".to_owned()), + artists: vec!["FSOL".to_owned()], genres: vec!["Ambient".to_owned()], ..Default::default() }, scanner::Song { virtual_path: PathBuf::from("Fantasy.mp3"), title: Some("Fantasy".to_owned()), + album: Some("Nemesis".to_owned()), + artists: vec!["Stratovarius".to_owned()], genres: vec!["Metal".to_owned()], ..Default::default() },