Skip to content

Commit

Permalink
Fix failing tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
tehkillerbee committed Nov 27, 2024
1 parent 8ac314c commit a174c14
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ def test_page_iterator(session):
elif isinstance(item, tidalapi.Video):
videos += 1

assert playlists == 19
# Number of playlists tend to change, resulting in failing tests.
# So we will make sure at least 10 playlists are returned.
assert playlists >= 10
assert videos == 30


Expand Down

0 comments on commit a174c14

Please sign in to comment.