Commit 6880c1b8 authored by Adrian Holovaty's avatar Adrian Holovaty
Browse files

Merge pull request #909 from bmispelon/ticket-20061

Fix 20061: remove out of date comment.
parents 0122a98d babd1090
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -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()