Skip to content

Commit 41c39fc

Browse files
committed
Tests: Fix track number check in TagLib XiphComment test
1 parent 96fe3b9 commit 41c39fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/taglib/test_xiphcomment.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ fn test_track() {
3737
cmt.push(String::from("TRACKNUM"), String::from("7"));
3838
assert_eq!(cmt.track(), Some(7));
3939
cmt.push(String::from("TRACKNUMBER"), String::from("8"));
40-
assert_eq!(cmt.year(), Some(8));
40+
assert_eq!(cmt.track(), Some(8));
4141
}
4242

4343
#[test]

0 commit comments

Comments
 (0)