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 Jun 3, 2024
1 parent a7ceb92 commit 4940c2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/operators/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

@pytest.mark.skipif(
sys.version_info != (3, 12),
reason="The error message for the abstract class instantiation seems to have changed between Python 3.11 and 3.12"
reason="The error message for the abstract class instantiation seems to have changed between Python 3.11 and 3.12",
)
def test_dbt_base_operator_is_abstract():
"""Tests that the abstract base operator cannot be instantiated since the base_cmd is not defined."""
Expand All @@ -30,7 +30,7 @@ def test_dbt_base_operator_is_abstract():

@pytest.mark.skipif(
sys.version_info == (3, 12),
reason="The error message for the abstract class instantiation seems to have changed between Python 3.11 and 3.12"
reason="The error message for the abstract class instantiation seems to have changed between Python 3.11 and 3.12",
)
def test_dbt_base_operator_is_abstract_py12():
"""Tests that the abstract base operator cannot be instantiated since the base_cmd is not defined."""
Expand Down

0 comments on commit 4940c2f

Please sign in to comment.