From 930a77481ee4ccc00e2a68b07bc6461ad4394bfe Mon Sep 17 00:00:00 2001 From: Serial <69764315+Serial-ATA@users.noreply.github.com> Date: Sat, 14 Sep 2024 17:12:09 -0400 Subject: [PATCH] Tests: Update TagLib tests for latest changes --- lofty/tests/taglib/test_id3v2.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lofty/tests/taglib/test_id3v2.rs b/lofty/tests/taglib/test_id3v2.rs index 49ce45c3..4c4fce44 100644 --- a/lofty/tests/taglib/test_id3v2.rs +++ b/lofty/tests/taglib/test_id3v2.rs @@ -366,7 +366,7 @@ fn test_render_popm() { let f = PopularimeterFrame::new(String::from("email@example.com"), 2, 3); assert_eq!( - f.as_bytes(), + f.as_bytes().unwrap(), b"\ email@example.com\x00\ \x02\ @@ -815,7 +815,7 @@ fn test_render_private_frame() { let f = PrivateFrame::new(String::from("WM/Provider"), b"TL".to_vec()); assert_eq!( - f.as_bytes(), + f.as_bytes().unwrap(), b"\ WM/Provider\x00\ TL"