summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2013-03-16 12:50:56 -0700
committerAdrian Holovaty <adrian@holovaty.com>2013-03-16 12:50:56 -0700
commit6880c1b8f29752f3dfd8aba63bd859f81f559030 (patch)
treeafe30e6bcd439c7328bed0536bed3825d474beff
parent0122a98dad6a7785def47466814ed2ae8d244143 (diff)
parentbabd1090ee2a05ae0ec061dd08e70f2008db059b (diff)
Merge pull request #909 from bmispelon/ticket-20061
Fix 20061: remove out of date comment.
-rw-r--r--django/contrib/humanize/tests.py2
1 files changed, 0 insertions, 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()