fixes test for related artists. Fixes issue #128.

This commit is contained in:
Jason Hamilton 2016-11-11 11:28:40 -08:00
parent 22558bc253
commit 7f0f7efe49
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ class TestSpotipy(unittest.TestCase):
self.assertTrue('artists' in results)
self.assertTrue(len(results['artists']) == 20)
for artist in results['artists']:
if artist['name'] == 'Rivers Cuomo':
if artist['name'] == 'Jimmy Eat World':
found = True
self.assertTrue(found)