refactor!: make artist description optional
This commit is contained in:
parent
81e913fa85
commit
690388788a
16 changed files with 25 additions and 24 deletions
|
|
@ -1924,7 +1924,7 @@ async fn music_related(#[case] id: &str, #[case] full: bool) {
|
|||
assert!(!album.cover.is_empty(), "got no cover");
|
||||
|
||||
let artist = album.artists.first().unwrap();
|
||||
assert_channel_id(&artist.id.as_ref().unwrap());
|
||||
assert_channel_id(artist.id.as_ref().unwrap());
|
||||
assert!(!artist.name.is_empty());
|
||||
}
|
||||
|
||||
|
|
|
|||
Reference in a new issue