Skip to content

Commit

Permalink
Tests: Fix track number check in TagLib XiphComment test
Browse files Browse the repository at this point in the history
  • Loading branch information
Serial-ATA committed Mar 24, 2023
1 parent ad7d4b3 commit e88a94a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/taglib/test_xiphcomment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ fn test_track() {
cmt.push(String::from("TRACKNUM"), String::from("7"));
assert_eq!(cmt.track(), Some(7));
cmt.push(String::from("TRACKNUMBER"), String::from("8"));
assert_eq!(cmt.year(), Some(8));
assert_eq!(cmt.track(), Some(8));
}

#[test]
Expand Down

0 comments on commit e88a94a

Please sign in to comment.