Skip to content

Commit

Permalink
fix: formatted all files with pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dominictarro committed Sep 20, 2024
1 parent 7b81c26 commit 5d78028
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_snowflake.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import pytest

from prefecto.ext.snowflake import (
PrefectoSnowflakeCursor,
CommandLogAdapter,
PrefectoSnowflakeCursor,
_execute,
_obfuscate_params,
)
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 5d78028

Please sign in to comment.