From ba8ed28858bf2ae8b407e36a6d34d50de40e3317 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 5 Dec 2023 12:42:28 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- testing/python/fixtures.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/testing/python/fixtures.py b/testing/python/fixtures.py index 66a5daf50..9781bd265 100644 --- a/testing/python/fixtures.py +++ b/testing/python/fixtures.py @@ -4368,7 +4368,11 @@ def test_fixture_double_decorator(pytester: Pytester) -> None: ) result = pytester.runpytest() result.assert_outcomes(errors=1) - result.stdout.fnmatch_lines(["E * ValueError: @pytest.fixture is being applied more than once to the same function 'fixt'"]) + result.stdout.fnmatch_lines( + [ + "E * ValueError: @pytest.fixture is being applied more than once to the same function 'fixt'" + ] + ) def test_fixture_param_shadowing(pytester: Pytester) -> None: