From 46a6ae291f9435263cb39b30400ece651d9c1366 Mon Sep 17 00:00:00 2001 From: sigma67 Date: Sun, 2 Jun 2024 14:23:16 +0200 Subject: [PATCH] fix flaky test --- tests/test_spotipy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_spotipy.py b/tests/test_spotipy.py index e5972e0..9e08d6c 100644 --- a/tests/test_spotipy.py +++ b/tests/test_spotipy.py @@ -16,4 +16,4 @@ def test_getSpotifyPlaylist(self): def test_getUserPlaylists(self): playlists = self.spotify.getUserPlaylists("spinninrecordsofficial") - self.assertGreater(len(playlists), 50) + self.assertGreater(len(playlists), 40)