diff --git a/pandas-iris/{{ cookiecutter.repo_name }}/src/tests/test_run.py b/pandas-iris/{{ cookiecutter.repo_name }}/src/tests/test_run.py index 9370d062..059aeac8 100644 --- a/pandas-iris/{{ cookiecutter.repo_name }}/src/tests/test_run.py +++ b/pandas-iris/{{ cookiecutter.repo_name }}/src/tests/test_run.py @@ -22,14 +22,13 @@ def config_loader(): @pytest.fixture -def project_context(): - def project_context(config_loader): - return KedroContext( - package_name="{{ cookiecutter.python_package }}", - project_path=Path.cwd(), - config_loader=config_loader, - hook_manager=_create_hook_manager(), - ) +def project_context(config_loader): + return KedroContext( + package_name="{{ cookiecutter.python_package }}", + project_path=Path.cwd(), + config_loader=config_loader, + hook_manager=_create_hook_manager(), + ) # The tests below are here for the demonstration purpose