mirror of
https://github.com/django/django.git
synced 2025-11-20 03:30:00 +00:00
Refs #33476 -- Reformatted code with Black.
This commit is contained in:
parent
f68fa8b45d
commit
9c19aff7c7
1992 changed files with 139577 additions and 96284 deletions
|
|
@ -12,12 +12,12 @@ class SqliteDbshellCommandTestCase(SimpleTestCase):
|
|||
|
||||
def test_path_name(self):
|
||||
self.assertEqual(
|
||||
self.settings_to_cmd_args_env({'NAME': Path('test.db.sqlite3')}),
|
||||
(['sqlite3', Path('test.db.sqlite3')], None),
|
||||
self.settings_to_cmd_args_env({"NAME": Path("test.db.sqlite3")}),
|
||||
(["sqlite3", Path("test.db.sqlite3")], None),
|
||||
)
|
||||
|
||||
def test_parameters(self):
|
||||
self.assertEqual(
|
||||
self.settings_to_cmd_args_env({'NAME': 'test.db.sqlite3'}, ['-help']),
|
||||
(['sqlite3', 'test.db.sqlite3', '-help'], None),
|
||||
self.settings_to_cmd_args_env({"NAME": "test.db.sqlite3"}, ["-help"]),
|
||||
(["sqlite3", "test.db.sqlite3", "-help"], None),
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue