summaryrefslogtreecommitdiff
path: root/tests/regressiontests/humanize/tests.py
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-04-01 05:23:08 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-04-01 05:23:08 +0000
commit018ece8dc8d564b18d35b7bcd468eaf619fa1385 (patch)
tree7f8bcdd3dbd763d25400ab518458e89a69e69fae /tests/regressiontests/humanize/tests.py
parentda1d001ce1105fb3f34c07fa75018e8137e3ece5 (diff)
Negligible formatting change to humanize tests.py (from [4880])
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4892 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/humanize/tests.py')
-rw-r--r--tests/regressiontests/humanize/tests.py6
1 files changed, 3 insertions, 3 deletions
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')