From e92b057e06b41eb05930637119e83ed3acd3d324 Mon Sep 17 00:00:00 2001 From: Jaap Roes Date: Mon, 11 Aug 2014 09:51:52 +0200 Subject: Fixed #23261 -- Deprecated old style list support for unordered_list filter. --- tests/template_tests/tests.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/template_tests') diff --git a/tests/template_tests/tests.py b/tests/template_tests/tests.py index d5ee85fce2..c24040ebfe 100644 --- a/tests/template_tests/tests.py +++ b/tests/template_tests/tests.py @@ -590,6 +590,8 @@ class TemplateTests(TestCase): # Ignore deprecations of using the wrong number of variables with the 'for' tag. # and warnings for {% url %} reversing by dotted path warnings.filterwarnings("ignore", category=RemovedInDjango20Warning, module="django.template.defaulttags") + # Ignore deprecations of old style unordered_list. + warnings.filterwarnings("ignore", category=RemovedInDjango20Warning, module="django.template.defaultfilters") output = self.render(test_template, vals) except ShouldNotExecuteException: failures.append("Template test (Cached='%s', TEMPLATE_STRING_IF_INVALID='%s', TEMPLATE_DEBUG=%s): %s -- FAILED. Template rendering invoked method that shouldn't have been invoked." % (is_cached, invalid_str, template_debug, name)) -- cgit v1.3