mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-11-10 06:34:18 +00:00
Tests: Update TagLib tests for latest changes
This commit is contained in:
parent
e8b89dbdc4
commit
930a77481e
1 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue