mirror of
https://github.com/django/django.git
synced 2025-11-24 21:00:12 +00:00
Fixed #33854 -- Corrected the order of parameters in dbshell on PostgreSQL.
This commit is contained in:
parent
b4817d20b9
commit
3e3e814166
2 changed files with 2 additions and 2 deletions
|
|
@ -154,7 +154,7 @@ class PostgreSqlDbshellCommandTestCase(SimpleTestCase):
|
|||
def test_parameters(self):
|
||||
self.assertEqual(
|
||||
self.settings_to_cmd_args_env({"NAME": "dbname"}, ["--help"]),
|
||||
(["psql", "dbname", "--help"], None),
|
||||
(["psql", "--help", "dbname"], None),
|
||||
)
|
||||
|
||||
@skipUnless(connection.vendor == "postgresql", "Requires a PostgreSQL connection")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue