From babd1090ee2a05ae0ec061dd08e70f2008db059b Mon Sep 17 00:00:00 2001 From: Baptiste Mispelon Date: Sat, 16 Mar 2013 18:55:24 +0100 Subject: [PATCH] Fix 20061: remove out of date comment. --- django/contrib/humanize/tests.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/django/contrib/humanize/tests.py b/django/contrib/humanize/tests.py index 505edf3709..83fcbd4e27 100644 --- a/django/contrib/humanize/tests.py +++ b/django/contrib/humanize/tests.py @@ -39,8 +39,6 @@ class MockDateTime(datetime.datetime): class HumanizeTests(TestCase): def humanize_tester(self, test_list, result_list, method): - # Using max below ensures we go through both lists - # However, if the lists are not equal length, this raises an exception for test_content, result in zip(test_list, result_list): t = Template('{%% load humanize %%}{{ test_content|%s }}' % method) rendered = t.render(Context(locals())).strip()