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)