Skip to content

Commit

Permalink
Tests: Update TagLib tests for latest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Serial-ATA committed Sep 14, 2024
1 parent e8b89db commit 930a774
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lofty/tests/taglib/test_id3v2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ fn test_render_popm() {
let f = PopularimeterFrame::new(String::from("[email protected]"), 2, 3);

assert_eq!(
f.as_bytes(),
f.as_bytes().unwrap(),
b"\
[email protected]\x00\
\x02\
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 930a774

Please sign in to comment.