Skip to content

Commit a174c14

Browse files
committed
Fix failing tests.
1 parent 8ac314c commit a174c14

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_page.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,9 @@ def test_page_iterator(session):
108108
elif isinstance(item, tidalapi.Video):
109109
videos += 1
110110

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

114116

0 commit comments

Comments
 (0)