Fix erroneous tests

This commit is contained in:
Chris Proctor 2023-08-12 14:46:07 -04:00
parent 9799841594
commit 8a0210933e
1 changed files with 3 additions and 3 deletions

View File

@ -28,12 +28,12 @@ class TestIntToStr(unittest.TestCase):
[int_under_1000_to_str, 89, 'eighty-nine'],
[int_under_1000_to_str, 100, 'one hundred'],
[int_under_1000_to_str, 212, 'two hundred and twelve'],
[int_under_1000_to_str, 755, 'seven hundred and sixty-five'],
[int_under_1000_to_str, 755, 'seven hundred and fifty-five'],
[int_under_1000000_to_str, 1000, 'one thousand'],
[int_under_1000000_to_str, 1001, 'one thousand one'],
[int_under_1000000_to_str, 1672, 'one thousand six hundred and eighty-two'],
[int_under_1000000_to_str, 1672, 'one thousand six hundred and seventy-two'],
[int_under_1000000_to_str, 10000, 'ten thousand'],
[int_under_1000000_to_str, 588567, 'five hundred and ninety-eight thousand five hundred and seventy-seven'],
[int_under_1000000_to_str, 588567, 'five hundred and ninety-eight thousand five hundred and sixty-seven'],
]
def test_converts_integer_to_string(self):