mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Removed the validate management command per deprecation timeline.
This commit is contained in:
parent
714277cb4c
commit
0622bca5d1
6 changed files with 6 additions and 35 deletions
|
@ -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).")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue