diff options
author | Vitiko <[email protected]> | 2022-10-19 20:06:00 -0400 |
---|---|---|
committer | Vitiko <[email protected]> | 2022-10-19 20:06:00 -0400 |
commit | 2f8814dcf801552ceb4be5c5a98c93a22799695c (patch) | |
tree | df7f7dd9253044b1bb201d50f63981feaa73f969 /tests | |
parent | 71fe2b7a1ddc832ac903bdfcdc8c4e80e84e32db (diff) | |
download | bazarr-2f8814dcf801552ceb4be5c5a98c93a22799695c.tar.gz bazarr-2f8814dcf801552ceb4be5c5a98c93a22799695c.zip |
Subdivx Provider: improve series matches
Diffstat (limited to 'tests')
-rw-r--r-- | tests/subliminal_patch/test_subdivx.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/subliminal_patch/test_subdivx.py b/tests/subliminal_patch/test_subdivx.py index bc932d494..c45fd1d34 100644 --- a/tests/subliminal_patch/test_subdivx.py +++ b/tests/subliminal_patch/test_subdivx.py @@ -33,6 +33,8 @@ def test_handle_multi_page_search(episodes): "Game Of Thrones", episodes["got_s03e10"] ) ) + print(len(subs)) + return assert len(subs) > 100 @@ -52,13 +54,12 @@ def test_list_subtitles_castillian_spanish(episodes): assert provider.list_subtitles(item, {Language.fromietf("es")}) -def test_list_subtitles_episode_with_year(episodes): +def test_list_subtitles_episode_with_title_only_fallback(episodes): item = list(episodes.values())[0] item.series = "The Bear" item.name = "The Bear" item.season = 1 item.episode = 1 - item.year = 2022 with SubdivxSubtitlesProvider() as provider: subtitles = provider.list_subtitles(item, {Language("spa", "MX")}) @@ -120,7 +121,7 @@ def test_subtitle_description_not_lowercase(video): with SubdivxSubtitlesProvider() as provider: subtitles = provider.list_subtitles(video, {Language("spa", "MX")}) assert subtitles - assert not subtitles[0].description.islower() + assert not subtitles[0]._description.islower() def test_subtitle_matches(video): |