Skip to content

Commit d474260

Browse files
committed
Tests: Fix bitrate in TestOGG::testAudioProperties()
1 parent 1d4384c commit d474260

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/taglib/test_ogg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ fn test_audio_properties() {
7878
let f = get_file::<VorbisFile>("tests/taglib/data/empty.ogg");
7979
assert_eq!(f.properties().duration().as_secs(), 3);
8080
assert_eq!(f.properties().duration().as_millis(), 3685);
81-
assert_eq!(f.properties().audio_bitrate(), 1);
81+
assert_eq!(f.properties().audio_bitrate(), 112); // TagLib reports 1? That is not correct.
8282
assert_eq!(f.properties().channels(), 2);
8383
assert_eq!(f.properties().sample_rate(), 44100);
8484
assert_eq!(f.properties().version(), 0);

0 commit comments

Comments
 (0)