summaryrefslogtreecommitdiff
path: root/tests/shell
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-03 11:20:46 +0100
committerGitHub <noreply@github.com>2022-02-03 11:20:46 +0100
commitc5cd8783825b5f6384417dac5f3889b4210b7d08 (patch)
tree3d4689aaa0e209e40d2d8df09edad7e155960b45 /tests/shell
parentc9d6e3595cfd0aa58cde1656bd735ecfcd7a872b (diff)
downloaddjango-c5cd8783825b5f6384417dac5f3889b4210b7d08.tar.gz
Refs #33476 -- Refactored problematic code before reformatting by Black.
In these cases Black produces unexpected results, e.g. def make_random_password( self, length=10, allowed_chars='abcdefghjkmnpqrstuvwxyz' 'ABCDEFGHJKLMNPQRSTUVWXYZ' '23456789', ): or cursor.execute(""" SELECT ... """, [table name], )
Diffstat (limited to 'tests/shell')
-rw-r--r--tests/shell/tests.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/shell/tests.py b/tests/shell/tests.py
index df32562f6b..aadd618109 100644
--- a/tests/shell/tests.py
+++ b/tests/shell/tests.py
@@ -11,10 +11,7 @@ from django.test.utils import captured_stdin, captured_stdout
class ShellCommandTestCase(SimpleTestCase):
script_globals = 'print("__name__" in globals())'
script_with_inline_function = (
- 'import django\n'
- 'def f():\n'
- ' print(django.__version__)\n'
- 'f()'
+ 'import django\ndef f():\n print(django.__version__)\nf()'
)
def test_command_option(self):