From 8908846444156eeae88be70332f96759cfce7740 Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Fri, 26 Feb 2021 20:53:01 +0100 Subject: Refs #32292 -- Made dbshell do not use 'postgres' database when service name is set. Regression in dcb3ad3319cad5c270a1856fd5f355e37cf9d474. --- tests/dbshell/test_postgresql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/dbshell/test_postgresql.py') diff --git a/tests/dbshell/test_postgresql.py b/tests/dbshell/test_postgresql.py index e9eb131db7..3345035a24 100644 --- a/tests/dbshell/test_postgresql.py +++ b/tests/dbshell/test_postgresql.py @@ -70,7 +70,7 @@ class PostgreSqlDbshellCommandTestCase(SimpleTestCase): def test_service(self): self.assertEqual( self.settings_to_cmd_args_env({'OPTIONS': {'service': 'django_test'}}), - (['psql', 'postgres'], {'PGSERVICE': 'django_test'}), + (['psql'], {'PGSERVICE': 'django_test'}), ) def test_column(self): -- cgit v1.2.1