From 866bda8606103dd02988d8137b2bb9986790a218 Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 23 Oct 2025 07:06:36 +0200 Subject: [PATCH] test: update test string for psycopg3 --- tests/test_misc.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_misc.py b/tests/test_misc.py index f213d6759..bd118740e 100644 --- a/tests/test_misc.py +++ b/tests/test_misc.py @@ -168,12 +168,12 @@ def test_plural() -> None: "conn_url,expected", [ ( - "postgresql+psycopg2://scott123:scott123@host:1245/dbname", - "postgresql+psycopg2://scott123:*****@host:1245/dbname", + "postgresql+psycopg://scott123:scott123@host:1245/dbname", + "postgresql+psycopg://scott123:*****@host:1245/dbname", ), ( - "postgresql+psycopg2://scott123:scott123@host.name.com/dbname", - "postgresql+psycopg2://scott123:*****@host.name.com/dbname", + "postgresql+psycopg://scott123:scott123@host.name.com/dbname", + "postgresql+psycopg://scott123:*****@host.name.com/dbname", ), ( "mariadb+mariadbconnector://app_user:Password123!@127.0.0.1:3306/company",