summaryrefslogtreecommitdiff
path: root/tests/admin_scripts/tests.py
diff options
context:
space:
mode:
authororlnub123 <orlnub123@gmail.com>2019-01-11 11:11:36 -0500
committerTim Graham <timograham@gmail.com>2019-01-12 11:07:03 -0500
commit573f44d62fe1e87e2c20a74eba5e20ca9ff0ed85 (patch)
tree41dddc27a3684e97cbabc0899bc4eb12c2608321 /tests/admin_scripts/tests.py
parentabf8e390a4161a051ed1c4be11b9447866b06ba8 (diff)
Fixed #30057 -- Fixed diffsettings ignoring custom configured settings.
Regression in 49b679371fe9beddcd23a93b5fdbadea914f37f8.
Diffstat (limited to 'tests/admin_scripts/tests.py')
-rw-r--r--tests/admin_scripts/tests.py2
1 files changed, 1 insertions, 1 deletions
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."""