Django

Code

Changeset 4892

Show
Ignore:
Timestamp:
04/01/07 00:23:08 (2 years ago)
Author:
adrian
Message:

Negligible formatting change to humanize tests.py (from [4880])

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/tests/regressiontests/humanize/tests.py

    r4880 r4892  
    2929    def test_intcomma(self): 
    3030        test_list = (100, 1000, 10123, 10311, 1000000, 1234567.25, 
    31                      '100','1000','10123','10311','1000000','1234567.1234567') 
    32         result_list = ('100', '1,000', '10,123', '10,311', '1,000,000','1,234,567.25', 
    33                        '100', '1,000', '10,123', '10,311', '1,000,000','1,234,567.1234567') 
     31                     '100', '1000', '10123', '10311', '1000000', '1234567.1234567') 
     32        result_list = ('100', '1,000', '10,123', '10,311', '1,000,000', '1,234,567.25', 
     33                       '100', '1,000', '10,123', '10,311', '1,000,000', '1,234,567.1234567') 
    3434 
    3535        self.humanize_tester(test_list, result_list, 'intcomma')