mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
run black
This commit is contained in:
@@ -340,17 +340,20 @@ class SettingsTests(SimpleTestCase):
|
||||
|
||||
def test_unable_to_import_settings_module(self):
|
||||
with self.assertRaisesMessage(
|
||||
ImproperlyConfigured, "Settings module fake_settings_module could not be imported"
|
||||
ImproperlyConfigured,
|
||||
"Settings module fake_settings_module could not be imported",
|
||||
):
|
||||
Settings('fake_settings_module')
|
||||
Settings("fake_settings_module")
|
||||
|
||||
def test_unable_to_import_a_random_module(self):
|
||||
def mock_import_module(_):
|
||||
raise ModuleNotFoundError("No module named 'fake_module'", name="fake_module")
|
||||
raise ModuleNotFoundError(
|
||||
"No module named 'fake_module'", name="fake_module"
|
||||
)
|
||||
|
||||
with mock.patch("importlib.import_module", mock_import_module):
|
||||
with self.assertRaisesMessage(ImportError, "No module named 'fake_module'"):
|
||||
Settings('fake_settings_module')
|
||||
Settings("fake_settings_module")
|
||||
|
||||
|
||||
class TestComplexSettingOverride(SimpleTestCase):
|
||||
|
||||
Reference in New Issue
Block a user