Skip to content

Commit

Permalink
Fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
KhramtsovDR committed Mar 29, 2024
1 parent 6899ee0 commit 6bddf4e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/test_ru.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,8 @@ def test_to_ordinal_feminine(self):
'двухмиллионная'
)
self.assertEqual(
num2words(2000000, lang='ru', to='ordinal', gender='f', plural=True),
num2words(2000000, lang='ru', to='ordinal', gender='f',
plural=True),
'двухмиллионные'
)

Expand All @@ -321,7 +322,8 @@ def test_to_ordinal_neuter(self):
'двухмиллионное'
)
self.assertEqual(
num2words(2000000, lang='ru', to='ordinal', gender='n', plural=True),
num2words(2000000, lang='ru', to='ordinal', gender='n',
plural=True),
'двухмиллионные'
)

Expand Down

0 comments on commit 6bddf4e

Please sign in to comment.