From 18192338338f2a2a2f4de6b25989bc2a1c19f060 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 17 Nov 2023 20:47:25 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20[pre-commit.ci]=20Auto=20format?= =?UTF-8?q?=20from=20pre-commit.com=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/profiles/postgres/test_pg_user_pass.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/profiles/postgres/test_pg_user_pass.py b/tests/profiles/postgres/test_pg_user_pass.py index ca6af2506..174fff139 100644 --- a/tests/profiles/postgres/test_pg_user_pass.py +++ b/tests/profiles/postgres/test_pg_user_pass.py @@ -83,7 +83,7 @@ def test_connection_claiming() -> None: assert not profile_mapping.can_claim_connection() # also test when there's no schema - conn = Connection(**{k: v for k, v in potential_values.items() if k != 'schema'}) + conn = Connection(**{k: v for k, v in potential_values.items() if k != "schema"}) with patch("airflow.hooks.base.BaseHook.get_connection", return_value=conn): profile_mapping = PostgresUserPasswordProfileMapping(conn, {"schema": None}) assert not profile_mapping.can_claim_connection()