Skip to content

Commit

Permalink
i
Browse files Browse the repository at this point in the history
  • Loading branch information
tlocke committed Jul 26, 2023
1 parent dd828bc commit 937de9c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/dbapi/test_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ def test_Connection_plain_socket(db_kwargs):
port = db_kwargs.get("port", 5432)
sock = socket.create_connection((host, port))
user = db_kwargs["user"]
conn_params = {"sock": sock, "user": user}
password = db_kwargs["passwqord"]
conn_params = {"sock": sock, "user": user, "password": password}

con = connect(**conn_params)
cur = con.cursor()
Expand Down

0 comments on commit 937de9c

Please sign in to comment.