Skip to content

Commit

Permalink
Fix integration test attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanebruckert committed May 31, 2024
1 parent ed40578 commit f0f2cf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/non_user_endpoints/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,10 +356,10 @@ def test_album_search(self):
['name'].find('Pinkerton') >= 0)

def test_track_search(self):
results = self.spotify.search(q='el scorcho weezer', type='track')
results = self.spotify.search(q='weezer island in the sun', type='track')
self.assertTrue('tracks' in results)
self.assertTrue(len(results['tracks']['items']) > 0)
self.assertTrue(results['tracks']['items'][0]['name'] == 'El Scorcho')
self.assertTrue(results['tracks']['items'][0]['name'] == 'Island In The Sun')

def test_user(self):
user = self.spotify.user(user='plamere')
Expand Down

0 comments on commit f0f2cf9

Please sign in to comment.