Fix 20061: remove out of date comment.

This commit is contained in:
Baptiste Mispelon 2013-03-16 18:55:24 +01:00
parent 0122a98dad
commit babd1090ee
1 changed files with 0 additions and 2 deletions

View File

@ -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()