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() {
216216 let mut file = temp_file ! ( "tests/taglib/data/ilst-is-last.m4a" ) ;
217217
218218 {
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 ( ) ;
220221 file. rewind ( ) . unwrap ( ) ;
221222
222223 let ilst = f. ilst_mut ( ) . unwrap ( ) ;
@@ -237,7 +238,7 @@ fn test_save_existing_when_ilst_is_last() {
237238 }
238239 file. rewind ( ) . unwrap ( ) ;
239240 {
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 ( ) ;
241242 let ilst = f. ilst ( ) . unwrap ( ) ;
242243
243244 assert_eq ! (
You can’t perform that action at this time.
0 commit comments