tests: fix artist snapshot naming
This commit is contained in:
parent
46e5f9201d
commit
402f5834d2
6 changed files with 1 additions and 1 deletions
|
|
@ -1447,7 +1447,7 @@ async fn music_artist(
|
||||||
// Sort albums to ensure consistent order
|
// Sort albums to ensure consistent order
|
||||||
artist.albums.sort_by_key(|a| a.id.to_owned());
|
artist.albums.sort_by_key(|a| a.id.to_owned());
|
||||||
|
|
||||||
insta::assert_ron_snapshot!(format!("music_album_{}", name), artist, {
|
insta::assert_ron_snapshot!(format!("music_artist_{}", name), artist, {
|
||||||
".header_image" => "[header_image]",
|
".header_image" => "[header_image]",
|
||||||
".subscriber_count" => "[subscriber_count]",
|
".subscriber_count" => "[subscriber_count]",
|
||||||
".albums[].cover" => "[cover]",
|
".albums[].cover" => "[cover]",
|
||||||
|
|
|
||||||
Reference in a new issue