Skip to content

Commit

Permalink
fix: tests u
Browse files Browse the repository at this point in the history
  • Loading branch information
tristiisch committed Dec 5, 2024
1 parent ba78c1b commit d0c0685
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/spotify_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,25 +48,25 @@ async def test_search_top(self):

async def test_url_artist(self):
tracks = await self.spotify_search.get_by_url(
"https://open.spotify.com/intl-fr/artist/2HALYSe657tNJ1iKVXP2xA?si=e5x_arTGSqWtnRrJjCCTdQ"
"https://open.spotify.com/intl-fr/artist/2HALYSe657tNJ1iKVXP2xA"
)
self.assertIsNotNone(tracks)

async def test_url_album(self):
tracks = await self.spotify_search.get_by_url(
"https://open.spotify.com/album/1mhVZVEHbIYUN7b5DkXF7d?si=U9HaPDJtRdSnT9qZaQxjXA"
"https://open.spotify.com/album/1mhVZVEHbIYUN7b5DkXF7d"
)
self.assertIsNotNone(tracks)

async def test_url_track(self):
tracks = await self.spotify_search.get_by_url(
"https://open.spotify.com/intl-fr/track/1mzZP8UA2RZUXDw33QNmn4?si=4c27f893cd7c4055"
"https://open.spotify.com/intl-fr/track/1mzZP8UA2RZUXDw33QNmn4"
)
self.assertIsNotNone(tracks)

async def test_url_playlist(self):
tracks = await self.spotify_search.get_by_url(
"https://open.spotify.com/playlist/37i9dQZF1DZ06evO1ymAtQ?si=5c4b6ff36a0d4c98"
"https://open.spotify.com/playlist/37i9dQZF1DZ06evO1ymAtQ"
)
self.assertIsNotNone(tracks)

Expand Down

0 comments on commit d0c0685

Please sign in to comment.