diff options
author | Vitiko <[email protected]> | 2022-10-20 19:42:25 -0400 |
---|---|---|
committer | Vitiko <[email protected]> | 2022-10-20 19:42:25 -0400 |
commit | 21359b32b551ac13ecedc07b83f8c90bf080ec53 (patch) | |
tree | cd59cbd59b8f26b373a4472edeeb359e1719984b /tests/subliminal_patch | |
parent | 9c5a88f880d0230eb988b31b9841f17c975e22a8 (diff) | |
download | bazarr-21359b32b551ac13ecedc07b83f8c90bf080ec53.tar.gz bazarr-21359b32b551ac13ecedc07b83f8c90bf080ec53.zip |
Subdivx Provider: add more search improvementsv1.1.3-beta.3
Diffstat (limited to 'tests/subliminal_patch')
-rw-r--r-- | tests/subliminal_patch/test_subdivx.py | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/tests/subliminal_patch/test_subdivx.py b/tests/subliminal_patch/test_subdivx.py index 852e3ca6f..26afdedde 100644 --- a/tests/subliminal_patch/test_subdivx.py +++ b/tests/subliminal_patch/test_subdivx.py @@ -28,12 +28,10 @@ def test_list_subtitles_movie_with_year_fallback(movies): def test_handle_multi_page_search(episodes): with SubdivxSubtitlesProvider() as provider: - subs = list( - provider._handle_multi_page_search( - "Game Of Thrones", episodes["got_s03e10"] - ) - ) - assert len(subs) > 100 + for _ in provider._handle_multi_page_search( + "Game Of Thrones", episodes["got_s03e10"] + ): + pass @pytest.mark.parametrize( |