Merge pull request #129 from jasonhamilton/master

fixes test for related artists.  Fixes issue #128.
This commit is contained in:
Paul Lamere 2016-12-10 11:43:42 -05:00 committed by GitHub
commit e19f77cb50
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)