[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2024-03-15 17:33:08 +00:00
parent c20f5448ca
commit 49880311e5
1 changed files with 4 additions and 1 deletions

View File

@ -302,7 +302,9 @@ def logging_during_setup_and_teardown(
assert [x.message for x in caplog.get_records("teardown")] == ["a_teardown_log"]
def private_assert_caplog_records_is_setup_call(caplog: pytest.LogCaptureFixture) -> None:
def private_assert_caplog_records_is_setup_call(
caplog: pytest.LogCaptureFixture,
) -> None:
# This reaches into private API, don't use this type of thing in real tests!
caplog_records = caplog._item.stash[caplog_records_key]
assert set(caplog_records) == {"setup", "call"}
@ -320,6 +322,7 @@ def test_captures_for_all_stages(
private_assert_caplog_records_is_setup_call(caplog)
def test_clear_for_call_stage(
caplog: pytest.LogCaptureFixture, logging_during_setup_and_teardown: None
) -> None: