removed a broken test function

This commit is contained in:
MrDulfin 2024-05-19 22:42:47 -04:00
parent a2cb8bd0b5
commit c8c00a765b

View file

@ -1139,19 +1139,6 @@ mod test {
use super::Song;
#[test]
fn get_art_test() {
let s = Song::from_file(Path::new("")).unwrap();
let dir = &TempDir::new().unwrap();
let now = Instant::now();
_ = s.open_album_art(0, dir).inspect_err(|e| println!("{e:?}"));
_ = s.open_album_art(1, dir).inspect_err(|e| println!("{e:?}"));
println!("{}ms", now.elapsed().as_millis());
sleep(Duration::from_secs(20));
}
#[test]
fn library_init() {
let config = Config::read_file(PathBuf::from("test_config/config_test.json")).unwrap();