Tests: Update TagLib tests for latest changes

This commit is contained in:
Serial 2024-09-14 17:12:09 -04:00
parent e8b89dbdc4
commit 930a77481e
No known key found for this signature in database
GPG key ID: DA95198DC17C4568

View file

@ -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"