From 5bb0477c823db5d5c31657981a444b34988ecaed Mon Sep 17 00:00:00 2001 From: jon r Date: Thu, 3 Apr 2025 10:50:36 +0200 Subject: [PATCH] fix(api/tests): add description key to playlists case --- api/tests/playlists/test_serializers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/api/tests/playlists/test_serializers.py b/api/tests/playlists/test_serializers.py index a79690c6c..e14f4710f 100644 --- a/api/tests/playlists/test_serializers.py +++ b/api/tests/playlists/test_serializers.py @@ -85,6 +85,7 @@ def test_playlist_serializer(factories, to_api_date): "duration": 0, "tracks_count": 0, "album_covers": [], + "description": playlist.description, } serializer = serializers.PlaylistSerializer(playlist)