From 1c7e2853a5194f831bc4c8a9adf785ad621b3c77 Mon Sep 17 00:00:00 2001 From: jackwotherspoon Date: Wed, 4 Sep 2024 18:42:03 +0000 Subject: [PATCH] chore: update test var --- tests/system/test_pg8000_connection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/system/test_pg8000_connection.py b/tests/system/test_pg8000_connection.py index ae683278..9c310e45 100644 --- a/tests/system/test_pg8000_connection.py +++ b/tests/system/test_pg8000_connection.py @@ -26,7 +26,7 @@ def create_sqlalchemy_engine( - inst_uri: str, + instance_connection_name: str, user: str, password: str, db: str, @@ -70,7 +70,7 @@ def create_sqlalchemy_engine( def getconn() -> pg8000.dbapi.Connection: conn: pg8000.dbapi.Connection = connector.connect( - inst_uri, + instance_connection_name, "pg8000", user=user, password=password,