Skip to content

Commit

Permalink
🎨 [pre-commit.ci] Auto format from pre-commit.com hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Nov 17, 2023
1 parent 91121c6 commit 1819233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/profiles/postgres/test_pg_user_pass.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 1819233

Please sign in to comment.