From eee05571124ae8a950bf4c82e3e2d7450a96d227 Mon Sep 17 00:00:00 2001 From: Ben Cail Date: Mon, 23 Sep 2024 14:53:39 -0400 Subject: [PATCH] fix linters --- tests/admin_scripts/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/admin_scripts/tests.py b/tests/admin_scripts/tests.py index 2642a1274b..f18b59f226 100644 --- a/tests/admin_scripts/tests.py +++ b/tests/admin_scripts/tests.py @@ -877,7 +877,7 @@ class ManageNoSettings(AdminScriptTestCase): args = ["runserver", "--settings=bad_settings", "--nostatic"] out, err = self.run_manage(args) self.assertNoOutput(out) - self.assertOutput(err, 'Settings module bad_settings could not be imported') + self.assertOutput(err, "Settings module bad_settings could not be imported") def test_builtin_with_bad_environment(self): """