diff --git a/django/contrib/messages/tests/base.py b/django/contrib/messages/tests/base.py
index 8d04532..60649ce 100644
|
a
|
b
|
class BaseTest(TestCase):
|
| 217 | 217 | TEMPLATE_CONTEXT_PROCESSORS=filter( |
| 218 | 218 | lambda p:'context_processors.messages' not in p, |
| 219 | 219 | settings.TEMPLATE_CONTEXT_PROCESSORS), |
| 220 | | MESSAGE_LEVEL=constants.DEBUG |
| | 220 | MESSAGE_LEVEL=constants.DEBUG, |
| | 221 | # Prevent any custom 500.html template to interfere with this test |
| | 222 | DEBUG_PROPAGATE_EXCEPTIONS = True, |
| 221 | 223 | ) |
| 222 | 224 | def test_middleware_disabled(self): |
| 223 | 225 | """ |