diff options
Diffstat (limited to 'tests/user_commands')
| -rw-r--r-- | tests/user_commands/management/commands/leave_locale_alone_false.py | 1 | ||||
| -rw-r--r-- | tests/user_commands/management/commands/leave_locale_alone_true.py | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/tests/user_commands/management/commands/leave_locale_alone_false.py b/tests/user_commands/management/commands/leave_locale_alone_false.py index e03ad1cab0..aa3e20664a 100644 --- a/tests/user_commands/management/commands/leave_locale_alone_false.py +++ b/tests/user_commands/management/commands/leave_locale_alone_false.py @@ -4,7 +4,6 @@ from django.utils import translation class Command(BaseCommand): - can_import_settings = True leave_locale_alone = False def handle(self, *args, **options): diff --git a/tests/user_commands/management/commands/leave_locale_alone_true.py b/tests/user_commands/management/commands/leave_locale_alone_true.py index 9861221e39..3100a2901b 100644 --- a/tests/user_commands/management/commands/leave_locale_alone_true.py +++ b/tests/user_commands/management/commands/leave_locale_alone_true.py @@ -4,7 +4,6 @@ from django.utils import translation class Command(BaseCommand): - can_import_settings = True leave_locale_alone = True def handle(self, *args, **options): |
