diff --git a/tests/regressiontests/humanize/tests.py b/tests/regressiontests/humanize/tests.py index b80150df01..eca65f7575 100644 --- a/tests/regressiontests/humanize/tests.py +++ b/tests/regressiontests/humanize/tests.py @@ -28,9 +28,9 @@ should've produced %s""" % (method, rendered, result_list[index])) def test_intcomma(self): test_list = (100, 1000, 10123, 10311, 1000000, 1234567.25, - '100','1000','10123','10311','1000000','1234567.1234567') - result_list = ('100', '1,000', '10,123', '10,311', '1,000,000','1,234,567.25', - '100', '1,000', '10,123', '10,311', '1,000,000','1,234,567.1234567') + '100', '1000', '10123', '10311', '1000000', '1234567.1234567') + result_list = ('100', '1,000', '10,123', '10,311', '1,000,000', '1,234,567.25', + '100', '1,000', '10,123', '10,311', '1,000,000', '1,234,567.1234567') self.humanize_tester(test_list, result_list, 'intcomma')