diff --git a/django/contrib/auth/tests/context_processors.py b/django/contrib/auth/tests/context_processors.py
index 8f77940..0eb5e5e 100644
a
|
b
|
class AuthContextProcessorTests(TestCase):
|
29 | 29 | response = self.client.get('/auth_processor_no_attr_access/') |
30 | 30 | self.assertContains(response, "Session not accessed") |
31 | 31 | |
| 32 | context._standard_context_processors = None |
| 33 | |
32 | 34 | @override_settings( |
33 | 35 | MIDDLEWARE_CLASSES=global_settings.MIDDLEWARE_CLASSES, |
34 | 36 | TEMPLATE_CONTEXT_PROCESSORS=global_settings.TEMPLATE_CONTEXT_PROCESSORS, |
… |
… |
class AuthContextProcessorTests(TestCase):
|
43 | 45 | response = self.client.get('/auth_processor_attr_access/') |
44 | 46 | self.assertContains(response, "Session accessed") |
45 | 47 | |
| 48 | context._standard_context_processors = None |
| 49 | |
46 | 50 | def test_perms_attrs(self): |
47 | 51 | self.client.login(username='super', password='secret') |
48 | 52 | response = self.client.get('/auth_processor_perms/') |