Fix typo 'seperator' on source code

This commit is contained in:
Ernesto Rodriguez Ortiz
2019-01-19 16:53:07 -05:00
parent c1292c1499
commit 2eee037648
16 changed files with 56 additions and 56 deletions

View File

@@ -84,11 +84,11 @@ class Num2WordsCZTest(TestCase):
"tisíc dvěstě třicet čtyři koruny, padesát šest haléřů")
self.assertEqual(
num2words(101.11, lang='cz', to='currency', currency='EUR',
seperator=' a'),
separator=' a'),
"sto jedna euro a jedenáct centů")
self.assertEqual(
num2words(101.21, lang='cz', to='currency', currency='CZK',
seperator=' a'),
separator=' a'),
"sto jedna korun a dvacet jedna haléřů"
)
self.assertEqual(
@@ -97,7 +97,7 @@ class Num2WordsCZTest(TestCase):
)
self.assertEqual(
num2words(123.50, lang='cz', to='currency', currency='CZK',
seperator=' a'),
separator=' a'),
"sto dvacet tři koruny a padesát haléřů"
)
self.assertEqual(