From 82fdc82f936f0a15df49630ba720bfe40746a9a4 Mon Sep 17 00:00:00 2001 From: Philipp Wolfer Date: Thu, 11 Jan 2024 12:41:44 +0100 Subject: [PATCH] Subsonic: Fixed getArtistInfo2 view test Part-of: --- api/tests/subsonic/test_views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/tests/subsonic/test_views.py b/api/tests/subsonic/test_views.py index 854703c02..c1a3245dc 100644 --- a/api/tests/subsonic/test_views.py +++ b/api/tests/subsonic/test_views.py @@ -185,7 +185,7 @@ def test_get_artist_info2( expected = { "artistInfo2": { - "musicBrainzId": [artist.mbid], + "musicBrainzId": artist.mbid, } } response = logged_in_api_client.get(url, {"id": artist.pk})