summaryrefslogtreecommitdiff
path: root/tests/template_backends
diff options
context:
space:
mode:
Diffstat (limited to 'tests/template_backends')
-rw-r--r--tests/template_backends/test_django.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/template_backends/test_django.py b/tests/template_backends/test_django.py
index a474b0765f..41eaff0c6d 100644
--- a/tests/template_backends/test_django.py
+++ b/tests/template_backends/test_django.py
@@ -27,11 +27,11 @@ class DjangoTemplatesTests(TemplateStringsTests):
template = engine.from_string('{{ processors }}')
request = RequestFactory().get('/')
- # Check that context processors run
+ # Context processors run
content = template.render({}, request)
self.assertEqual(content, 'yes')
- # Check that context overrides context processors
+ # Context overrides context processors
content = template.render({'processors': 'no'}, request)
self.assertEqual(content, 'no')