Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
getzze committed Oct 22, 2024
1 parent 25d668d commit 5e63b6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/providers/test_addic7ed.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def test_converter_convert_alpha3_name_converter():

@pytest.mark.converter()
def test_converter_reverse():
assert language_converters['addic7ed'].reverse('Chinese (Traditional)') == ('zho',)
assert language_converters['addic7ed'].reverse('Chinese (Traditional)') == ('zho', None, None)


@pytest.mark.converter()
Expand Down
2 changes: 1 addition & 1 deletion tests/providers/test_tvsubtitles.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_converter_convert_alpha3_alpha2_converter():

@pytest.mark.converter()
def test_converter_reverse():
assert language_converters['tvsubtitles'].reverse('gr') == ('ell',)
assert language_converters['tvsubtitles'].reverse('gr') == ('ell', None, None)


@pytest.mark.converter()
Expand Down

0 comments on commit 5e63b6b

Please sign in to comment.