Skip to content

Commit

Permalink
chore(pre-commit.ci): auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Mar 6, 2024
1 parent e773a5d commit 841b799
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
('convert_exc', 'raised_exc_type', 'expected_exc_type', 'should_be_converted'),
[
pytest.param(ExcConverter({ValueError: ImportError}), ValueError, ImportError, True, id='should convert'),
pytest.param(ExcConverter({ValueError: ImportError}), RuntimeError, RuntimeError, False, id='should not convert'),
pytest.param(
ExcConverter({ValueError: ImportError}), RuntimeError, RuntimeError, False, id='should not convert'
),
],
)
async def test_exc_converter(
Expand Down

0 comments on commit 841b799

Please sign in to comment.