mirror of
https://github.com/django/django.git
synced 2025-08-01 09:32:50 +00:00
Refs #32508 -- Raised ImproperlyConfigured instead of using "assert" in middlewares.
This commit is contained in:
parent
dc86a25a67
commit
a2d5ea626e
4 changed files with 19 additions and 13 deletions
|
@ -1,4 +1,5 @@
|
|||
from django.contrib.auth.models import User
|
||||
from django.core.exceptions import ImproperlyConfigured
|
||||
from django.test import override_settings
|
||||
|
||||
from .tests import AdminDocsTestCase, TestDataMixin
|
||||
|
@ -54,5 +55,5 @@ class XViewMiddlewareTest(TestDataMixin, AdminDocsTestCase):
|
|||
"installed. Edit your MIDDLEWARE setting to insert "
|
||||
"'django.contrib.auth.middleware.AuthenticationMiddleware'."
|
||||
)
|
||||
with self.assertRaisesMessage(AssertionError, msg):
|
||||
with self.assertRaisesMessage(ImproperlyConfigured, msg):
|
||||
self.client.head('/xview/func/')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue