From 573f44d62fe1e87e2c20a74eba5e20ca9ff0ed85 Mon Sep 17 00:00:00 2001 From: orlnub123 Date: Fri, 11 Jan 2019 11:11:36 -0500 Subject: Fixed #30057 -- Fixed diffsettings ignoring custom configured settings. Regression in 49b679371fe9beddcd23a93b5fdbadea914f37f8. --- tests/admin_scripts/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/admin_scripts/tests.py') diff --git a/tests/admin_scripts/tests.py b/tests/admin_scripts/tests.py index 410652efbc..15a18eefee 100644 --- a/tests/admin_scripts/tests.py +++ b/tests/admin_scripts/tests.py @@ -2236,7 +2236,7 @@ class DiffSettings(AdminScriptTestCase): def test_settings_configured(self): out, err = self.run_manage(['diffsettings'], configured_settings=True) self.assertNoOutput(err) - self.assertOutput(out, 'DEBUG = True') + self.assertOutput(out, 'CUSTOM = 1 ###\nDEBUG = True') def test_all(self): """The all option also shows settings with the default value.""" -- cgit v1.3