summaryrefslogtreecommitdiff
path: root/tests/template_tests/test_response.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/template_tests/test_response.py')
-rw-r--r--tests/template_tests/test_response.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/template_tests/test_response.py b/tests/template_tests/test_response.py
index 8fea389f53..debc01dfe2 100644
--- a/tests/template_tests/test_response.py
+++ b/tests/template_tests/test_response.py
@@ -248,12 +248,6 @@ class TemplateResponseTest(SimpleTestCase):
{'foo': 'bar'}).render()
self.assertEqual(response.content, b'baryes')
- @ignore_warnings(category=RemovedInDjango110Warning)
- def test_render_with_context(self):
- response = self._response('{{ foo }}{{ processors }}',
- Context({'foo': 'bar'})).render()
- self.assertEqual(response.content, b'bar')
-
def test_context_processor_priority(self):
# context processors should be overridden by passed-in context
response = self._response('{{ foo }}{{ processors }}',