From 6860151d788b8b016a7032f28e0b283ba4dfbcad Mon Sep 17 00:00:00 2001 From: Ritiek Malhotra Date: Mon, 26 Jun 2017 14:43:38 +0530 Subject: [PATCH] Handle playlists with more than 50 tracks --- test/test_username.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_username.py b/test/test_username.py index 16c608c..e94e9c7 100644 --- a/test/test_username.py +++ b/test/test_username.py @@ -24,8 +24,8 @@ def test_list(): spotdl.misc.feed_tracks('list.txt', tracks) while tracks['next']: - tracks = spotify.next(tracks) - misc.feed_tracks('list.txt', tracks) + tracks = spotdl.spotify.next(tracks) + spotdl.misc.feed_tracks('list.txt', tracks) with open('list.txt', 'r') as listed: expect_song = (listed.read()).splitlines()[0]