We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 103239a commit 90ba51bCopy full SHA for 90ba51b
lofty/tests/taglib/test_mp4.rs
@@ -216,7 +216,8 @@ fn test_save_existing_when_ilst_is_last() {
216
let mut file = temp_file!("tests/taglib/data/ilst-is-last.m4a");
217
218
{
219
- let mut f = Mp4File::read_from(&mut file, ParseOptions::new()).unwrap();
+ let mut f =
220
+ Mp4File::read_from(&mut file, ParseOptions::new().read_properties(false)).unwrap();
221
file.rewind().unwrap();
222
223
let ilst = f.ilst_mut().unwrap();
@@ -237,7 +238,7 @@ fn test_save_existing_when_ilst_is_last() {
237
238
}
239
240
- let f = Mp4File::read_from(&mut file, ParseOptions::new()).unwrap();
241
+ let f = Mp4File::read_from(&mut file, ParseOptions::new().read_properties(false)).unwrap();
242
let ilst = f.ilst().unwrap();
243
244
assert_eq!(
0 commit comments