Skip to content

Commit 93347b0

Browse files
author
CommanderKeynes
committed
Fix format
1 parent b6fb1e4 commit 93347b0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_connect.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1322,7 +1322,9 @@ def test_connect_connection_service_file(self):
13221322
})
13231323
# Test that dsn params overwrite service file
13241324
self.run_testcase({
1325-
'dsn': 'postgresql://?service=test_service_dbname&dbname=test_dbname_dsn',
1325+
'dsn': 'postgresql://?service={}&dbname={}'.format(
1326+
"test_service_dbname", "test_dbname_dsn"
1327+
),
13261328
'env': {
13271329
'PGSERVICEFILE': connection_service_file.name
13281330
},

0 commit comments

Comments
 (0)