summaryrefslogtreecommitdiff
path: root/tests/logging_tests
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-01-17 19:00:12 -0500
committerTim Graham <timograham@gmail.com>2015-01-17 19:12:03 -0500
commit0622bca5d1b25877167b7beda96edcd3ba58db8d (patch)
tree32df33bbf2ac65345a65eb4ddbad6f462042c2d1 /tests/logging_tests
parent714277cb4cedd8290101f9c6b3e6382f192ae177 (diff)
downloaddjango-0622bca5d1b25877167b7beda96edcd3ba58db8d.tar.gz
Removed the validate management command per deprecation timeline.
Diffstat (limited to 'tests/logging_tests')
-rw-r--r--tests/logging_tests/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/logging_tests/tests.py b/tests/logging_tests/tests.py
index af03e47d09..65b2be4135 100644
--- a/tests/logging_tests/tests.py
+++ b/tests/logging_tests/tests.py
@@ -385,7 +385,7 @@ class SettingsConfigTest(AdminScriptTestCase):
def test_circular_dependency(self):
# validate is just an example command to trigger settings configuration
- out, err = self.run_manage(['validate'])
+ out, err = self.run_manage(['check'])
self.assertNoOutput(err)
self.assertOutput(out, "System check identified no issues (0 silenced).")
@@ -466,6 +466,6 @@ format=%(message)s
self.remove_settings('settings.py')
def test_custom_logging(self):
- out, err = self.run_manage(['validate'])
+ out, err = self.run_manage(['check'])
self.assertNoOutput(err)
self.assertOutput(out, "System check identified no issues (0 silenced).")