test: fix tests
This commit is contained in:
parent
5ce84c44a6
commit
fd51809202
2 changed files with 16 additions and 1 deletions
|
|
@ -11,6 +11,21 @@ MusicArtist(
|
|||
subscriber_count: "[subscriber_count]",
|
||||
tracks: "[tracks]",
|
||||
albums: [
|
||||
AlbumItem(
|
||||
id: "MPREb_5gkbwhqC4AJ",
|
||||
name: "Goldener Schluss (Live in Berlin)",
|
||||
cover: "[cover]",
|
||||
artists: [
|
||||
ArtistId(
|
||||
id: Some("UCOR4_bSVIXPsGa4BbCSt60Q"),
|
||||
name: "Trailerpark",
|
||||
),
|
||||
],
|
||||
artist_id: Some("UCOR4_bSVIXPsGa4BbCSt60Q"),
|
||||
album_type: album,
|
||||
year: Some(2024),
|
||||
by_va: false,
|
||||
),
|
||||
AlbumItem(
|
||||
id: "MPREb_8PsIyll0LFV",
|
||||
name: "Bleib in der Schule",
|
||||
|
|
|
|||
|
|
@ -2719,7 +2719,7 @@ async fn invalid_ctoken(#[case] ep: ContinuationEndpoint, rp: RustyPipe) {
|
|||
async fn isrc_search_languages(rp: RustyPipe) {
|
||||
for lang in LANGUAGES {
|
||||
// flaky for English, skipping for now
|
||||
if matches!(lang, Language::EnIn) {
|
||||
if matches!(lang, Language::EnGb | Language::EnIn) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Reference in a new issue