mirror of
https://github.com/django/django.git
synced 2025-10-17 22:07:29 +00:00
Fixed #24149 -- Normalized tuple settings to lists.
This commit is contained in:
parent
570912a97d
commit
9ec8aa5e5d
120 changed files with 612 additions and 616 deletions
|
@ -277,8 +277,8 @@ class CommonMiddlewareTest(TestCase):
|
|||
|
||||
|
||||
@override_settings(
|
||||
IGNORABLE_404_URLS=(re.compile(r'foo'),),
|
||||
MANAGERS=('PHB@dilbert.com',),
|
||||
IGNORABLE_404_URLS=[re.compile(r'foo')],
|
||||
MANAGERS=['PHB@dilbert.com'],
|
||||
)
|
||||
class BrokenLinkEmailsMiddlewareTest(TestCase):
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue