Skip to content

Commit

Permalink
Tests: Fix TagLib TestFLAC::testSaveMultipleValues
Browse files Browse the repository at this point in the history
  • Loading branch information
Serial-ATA committed Apr 10, 2023
1 parent eb9c1af commit 9a7e4db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/taglib/test_flac.rs
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ fn test_save_multiple_values() {

f.vorbis_comments_mut()
.unwrap()
.push(String::from("ARTIST"), String::from("artist 1"));
.insert(String::from("ARTIST"), String::from("artist 1"));
f.vorbis_comments_mut()
.unwrap()
.push(String::from("ARTIST"), String::from("artist 2"));
Expand Down

0 comments on commit 9a7e4db

Please sign in to comment.