mirror of
https://github.com/bblaz/num2words.git
synced 2025-12-06 06:42:25 +00:00
Fix typo 'seperator' on source code
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user