Skip to content

Commit

Permalink
fix search filters test
Browse files Browse the repository at this point in the history
  • Loading branch information
sigma67 committed Jul 23, 2024
1 parent 0f00260 commit 858995e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/mixins/test_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def test_search_filters(self, yt_auth):
assert len(results) > 10
assert all(item["resultType"] == "podcast" for item in results)
results = yt_auth.search(query, filter="episodes")
assert len(results) >= 5
assert len(results) >= 3
assert all(item["resultType"] == "episode" for item in results)

def test_search_top_result(self, yt):
Expand Down

0 comments on commit 858995e

Please sign in to comment.