Skip to content

Commit

Permalink
Fix merge mistake in test in pandas-iris starter (#91)
Browse files Browse the repository at this point in the history
Signed-off-by: Merel Theisen <merel.theisen@quantumblack.com>
  • Loading branch information
merelcht authored May 19, 2022
1 parent b08682a commit 786c32a
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions pandas-iris/{{ cookiecutter.repo_name }}/src/tests/test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 786c32a

Please sign in to comment.