From 321e94fa41b121f65c02119c02098df327bbd569 Mon Sep 17 00:00:00 2001 From: za Date: Thu, 27 Oct 2016 14:53:39 +0700 Subject: Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings. --- tests/template_backends/test_django.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/template_backends') 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') -- cgit v1.3