summaryrefslogtreecommitdiff
path: root/tests/admin_scripts/management/commands/noargs_command.py
diff options
context:
space:
mode:
authorHasan Ramezani <hasan.r67@gmail.com>2020-05-14 00:00:41 +0200
committerCarlton Gibson <carlton.gibson@noumenal.es>2020-05-21 12:34:54 +0200
commitc60524c658f197f645b638f9bcc553103bfe2630 (patch)
tree46c3f2c654626caddbd2764b195adf2fcb4a21fa /tests/admin_scripts/management/commands/noargs_command.py
parenta4e6030904df63b3f10aa0729b86dc6942b0458e (diff)
Fixed #31546 -- Allowed specifying list of tags in Command.requires_system_checks.
Diffstat (limited to 'tests/admin_scripts/management/commands/noargs_command.py')
-rw-r--r--tests/admin_scripts/management/commands/noargs_command.py2
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()))