From 62106727af9cd9b025941615562e8f0372582644 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 6 Jun 2022 19:26:16 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_schema.py | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/tests/test_schema.py b/tests/test_schema.py index 4147653..89d035b 100644 --- a/tests/test_schema.py +++ b/tests/test_schema.py @@ -79,11 +79,11 @@ def test_pycharm_schema_back( @abstractmethod def run_test( # noqa: MAN001 - self, - tmp_pathplus: PathPlus, - advanced_file_regression: AdvancedFileRegressionFixture, - capsys, - ) -> None: + self, + tmp_pathplus: PathPlus, + advanced_file_regression: AdvancedFileRegressionFixture, + capsys, + ) -> None: raise NotImplementedError @@ -99,11 +99,11 @@ def test_pycharm_schema_not_project(self, no_idea: str, tmp_pathplus: PathPlus) assert not result.stdout def run_test( # noqa: MAN001 - self, - tmp_pathplus: PathPlus, - advanced_file_regression: AdvancedFileRegressionFixture, - capsys, - ) -> None: + self, + tmp_pathplus: PathPlus, + advanced_file_regression: AdvancedFileRegressionFixture, + capsys, + ) -> None: (tmp_pathplus / ".idea").maybe_make() with in_directory(tmp_pathplus): @@ -122,11 +122,11 @@ def test_pycharm_schema_not_project(self, tmp_pathplus: PathPlus, no_idea: str): register_schema(tmp_pathplus) def run_test( # noqa: MAN001 - self, - tmp_pathplus: PathPlus, - advanced_file_regression: AdvancedFileRegressionFixture, - capsys, - ) -> None: + self, + tmp_pathplus: PathPlus, + advanced_file_regression: AdvancedFileRegressionFixture, + capsys, + ) -> None: (tmp_pathplus / ".idea").maybe_make() register_schema(tmp_pathplus) self.check_output(tmp_pathplus, advanced_file_regression, capsys.readouterr().out)