From 5d7802887786e6076d3bacb7e340835e6e041c70 Mon Sep 17 00:00:00 2001 From: Dominic Tarro <57306102+dominictarro@users.noreply.github.com> Date: Fri, 20 Sep 2024 16:19:32 -0400 Subject: [PATCH] fix: formatted all files with pre-commit --- tests/test_snowflake.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/test_snowflake.py b/tests/test_snowflake.py index e028212..faa9f8b 100644 --- a/tests/test_snowflake.py +++ b/tests/test_snowflake.py @@ -4,8 +4,8 @@ import pytest from prefecto.ext.snowflake import ( - PrefectoSnowflakeCursor, CommandLogAdapter, + PrefectoSnowflakeCursor, _execute, _obfuscate_params, ) @@ -59,7 +59,8 @@ def test_execute_log_level_adjustment( assert "[12345] Executing command:\n" + "SELECT * FROM table" in caplog.text else: assert ( - "[12345] Executing command:\n" + "SELECT * FROM table" not in caplog.text + "[12345] Executing command:\n" + "SELECT * FROM table" + not in caplog.text ) assert "[12345] Command executed successfully." in caplog.text