From 36ea3d93190dd6c1c4d0e551b4cacc3416f669d3 Mon Sep 17 00:00:00 2001 From: Stephane Bruckert Date: Sat, 18 Jun 2022 23:29:12 +0100 Subject: [PATCH] Fix lint --- tests/integration/test_user_endpoints.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/integration/test_user_endpoints.py b/tests/integration/test_user_endpoints.py index 09b57b35..a0335035 100644 --- a/tests/integration/test_user_endpoints.py +++ b/tests/integration/test_user_endpoints.py @@ -402,7 +402,6 @@ def test_category_playlists_limit_high(self): response = self.spotify.category_playlists(category_id=cat_id, limit=50) self.assertLessEqual(len(response['categories']['items']), 50) - def test_new_releases(self): response = self.spotify.new_releases() self.assertGreater(len(response['albums']), 0)