We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99337ba commit 368cc28Copy full SHA for 368cc28
lofty/tests/taglib/test_id3v2.rs
@@ -366,7 +366,7 @@ fn test_render_popm() {
366
let f = PopularimeterFrame::new(String::from("email@example.com"), 2, 3);
367
368
assert_eq!(
369
- f.as_bytes(),
+ f.as_bytes().unwrap(),
370
b"\
371
email@example.com\x00\
372
\x02\
@@ -815,7 +815,7 @@ fn test_render_private_frame() {
815
let f = PrivateFrame::new(String::from("WM/Provider"), b"TL".to_vec());
816
817
818
819
820
WM/Provider\x00\
821
TL"
0 commit comments