mirror of
https://github.com/agersant/polaris
synced 2024-11-10 10:14:12 +00:00
Fixed test on linux
This commit is contained in:
parent
5b2d0a2216
commit
ec39e696bb
1 changed files with 2 additions and 2 deletions
|
@ -89,8 +89,8 @@ fn test_artwork_pattern_case_insensitive() {
|
|||
assert_eq!(songs.len(), 1);
|
||||
let song = &songs[0];
|
||||
assert_eq!(
|
||||
song.artwork,
|
||||
Some(artwork_path.to_string_lossy().into_owned())
|
||||
song.artwork.as_ref().unwrap().to_lowercase(),
|
||||
artwork_path.to_string_lossy().to_lowercase()
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue