File tree Expand file tree Collapse file tree 1 file changed +4
-22
lines changed Expand file tree Collapse file tree 1 file changed +4
-22
lines changed Original file line number Diff line number Diff line change @@ -20,29 +20,11 @@ fn test_signature() {
20
20
}
21
21
22
22
#[ test]
23
+ #[ ignore]
23
24
fn test_multiple_comment_blocks ( ) {
24
- let mut file = temp_file ! ( "tests/taglib/data/multiple-vc.flac" ) ;
25
- {
26
- let mut f = FlacFile :: read_from ( & mut file, ParseOptions :: new ( ) ) . unwrap ( ) ;
27
- file. rewind ( ) . unwrap ( ) ;
28
-
29
- assert_eq ! (
30
- f. vorbis_comments( ) . unwrap( ) . artist( ) . as_deref( ) ,
31
- Some ( "Artist 1" )
32
- ) ;
33
- f. vorbis_comments_mut ( )
34
- . unwrap ( )
35
- . set_artist ( String :: from ( "The Artist" ) ) ;
36
- f. save_to ( & mut file) . unwrap ( ) ;
37
- }
38
- file. rewind ( ) . unwrap ( ) ;
39
- {
40
- let f = FlacFile :: read_from ( & mut file, ParseOptions :: new ( ) ) . unwrap ( ) ;
41
- assert_eq ! (
42
- f. vorbis_comments( ) . unwrap( ) . artist( ) . as_deref( ) ,
43
- Some ( "The Artist" )
44
- ) ;
45
- }
25
+ // Marker test, Lofty does not replicate TagLib's behavior
26
+ //
27
+ // TagLib will use the *first* tag in the stream, while we use the latest.
46
28
}
47
29
48
30
#[ test]
You can’t perform that action at this time.
0 commit comments