From 41c39fcaaa23186deaae84fde9b2f840b7bf8350 Mon Sep 17 00:00:00 2001 From: Serial <69764315+Serial-ATA@users.noreply.github.com> Date: Mon, 20 Mar 2023 08:51:50 -0400 Subject: [PATCH] Tests: Fix track number check in TagLib XiphComment test --- tests/taglib/test_xiphcomment.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/taglib/test_xiphcomment.rs b/tests/taglib/test_xiphcomment.rs index a9061cb2f..8f222661f 100644 --- a/tests/taglib/test_xiphcomment.rs +++ b/tests/taglib/test_xiphcomment.rs @@ -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]