File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -216,7 +216,8 @@ fn test_save_existing_when_ilst_is_last() {
216
216
let mut file = temp_file ! ( "tests/taglib/data/ilst-is-last.m4a" ) ;
217
217
218
218
{
219
- let mut f = Mp4File :: read_from ( & mut file, ParseOptions :: new ( ) ) . unwrap ( ) ;
219
+ let mut f =
220
+ Mp4File :: read_from ( & mut file, ParseOptions :: new ( ) . read_properties ( false ) ) . unwrap ( ) ;
220
221
file. rewind ( ) . unwrap ( ) ;
221
222
222
223
let ilst = f. ilst_mut ( ) . unwrap ( ) ;
@@ -237,7 +238,7 @@ fn test_save_existing_when_ilst_is_last() {
237
238
}
238
239
file. rewind ( ) . unwrap ( ) ;
239
240
{
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 ( ) ;
241
242
let ilst = f. ilst ( ) . unwrap ( ) ;
242
243
243
244
assert_eq ! (
You can’t perform that action at this time.
0 commit comments