Skip to content

Commit 930a774

Browse files
committed
Tests: Update TagLib tests for latest changes
1 parent e8b89db commit 930a774

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lofty/tests/taglib/test_id3v2.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ fn test_render_popm() {
366366
let f = PopularimeterFrame::new(String::from("[email protected]"), 2, 3);
367367

368368
assert_eq!(
369-
f.as_bytes(),
369+
f.as_bytes().unwrap(),
370370
b"\
371371
372372
\x02\
@@ -815,7 +815,7 @@ fn test_render_private_frame() {
815815
let f = PrivateFrame::new(String::from("WM/Provider"), b"TL".to_vec());
816816

817817
assert_eq!(
818-
f.as_bytes(),
818+
f.as_bytes().unwrap(),
819819
b"\
820820
WM/Provider\x00\
821821
TL"

0 commit comments

Comments
 (0)