summaryrefslogtreecommitdiff
path: root/tests/admin_scripts/management
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2014-01-20 20:30:29 +0800
committerRussell Keith-Magee <russell@keith-magee.com>2014-01-20 20:30:29 +0800
commit53aa6c6ac1b6534f2e3a159014401b84bf1f70c1 (patch)
tree22a21e76ad6bd1e429b8a1545d466b02fddab75c /tests/admin_scripts/management
parentb0602e935ca8f7fca4d43083a752a6a418bb1e71 (diff)
Added warning silencers to some noisy tests.
These warnings all emerged as the result of the introduction of the checks framework. Thanks to Anssi Kääriäinen for the report.
Diffstat (limited to 'tests/admin_scripts/management')
-rw-r--r--tests/admin_scripts/management/commands/color_command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/admin_scripts/management/commands/color_command.py b/tests/admin_scripts/management/commands/color_command.py
index 02da0a14ab..dda2cc826d 100644
--- a/tests/admin_scripts/management/commands/color_command.py
+++ b/tests/admin_scripts/management/commands/color_command.py
@@ -3,7 +3,7 @@ from django.core.management.base import NoArgsCommand
class Command(NoArgsCommand):
help = "Test color output"
- requires_model_validation = False
+ requires_system_checks = False
def handle_noargs(self, **options):
return self.style.SQL_KEYWORD('BEGIN')