summaryrefslogtreecommitdiff
path: root/tests/logging_tests
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-01-22 14:09:02 -0500
committerTim Graham <timograham@gmail.com>2014-01-28 08:31:02 -0500
commit2b6914049a882e2f1b398baf54940e815b85a90a (patch)
tree82803ffd89c598416b3f915b91b600281027ac79 /tests/logging_tests
parent3e4dc5ecf25aa2b38eed73472899f0de5a319c04 (diff)
Fixed #21849 -- Included the count of silenced system checks in output.
Diffstat (limited to 'tests/logging_tests')
-rw-r--r--tests/logging_tests/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/logging_tests/tests.py b/tests/logging_tests/tests.py
index 0797b907cf..4140608f57 100644
--- a/tests/logging_tests/tests.py
+++ b/tests/logging_tests/tests.py
@@ -333,7 +333,7 @@ class SettingsConfigTest(AdminScriptTestCase):
# validate is just an example command to trigger settings configuration
out, err = self.run_manage(['validate'])
self.assertNoOutput(err)
- self.assertOutput(out, "System check identified no issues.")
+ self.assertOutput(out, "System check identified no issues (0 silenced).")
def dictConfig(config):