From 31a250eb9035ca301a183f3e19be82516aa68890 Mon Sep 17 00:00:00 2001 From: Daniel-EST Date: Fri, 28 Jan 2022 15:31:41 -0300 Subject: [PATCH] Tests fix for issue #435 --- tests/test_pt_BR.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/test_pt_BR.py b/tests/test_pt_BR.py index bbf9e8d..87e231b 100644 --- a/tests/test_pt_BR.py +++ b/tests/test_pt_BR.py @@ -80,6 +80,12 @@ class Num2WordsPTBRTest(TestCase): self.assertEqual( num2words(6000000, lang='pt_BR'), 'seis milhões' ) + self.assertEqual( + num2words(100000000, lang='pt_BR'), 'cem milhões' + ) + self.assertEqual( + num2words(100000000000, lang='pt_BR'), 'cem bilhões' + ) self.assertEqual( num2words(19000000000, lang='pt_BR'), 'dezenove bilhões' )