diff options
Diffstat (limited to 'tests/admin_scripts/management/commands/noargs_command.py')
| -rw-r--r-- | tests/admin_scripts/management/commands/noargs_command.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/admin_scripts/management/commands/noargs_command.py b/tests/admin_scripts/management/commands/noargs_command.py index c95f7c1844..65ee370ab7 100644 --- a/tests/admin_scripts/management/commands/noargs_command.py +++ b/tests/admin_scripts/management/commands/noargs_command.py @@ -3,7 +3,7 @@ from django.core.management.base import BaseCommand class Command(BaseCommand): help = "Test No-args commands" - requires_system_checks = False + requires_system_checks = [] def handle(self, **options): print('EXECUTE: noargs_command options=%s' % sorted(options.items())) |
