From 7ba5fd076f3ce229267959987a5907e4819ef9f8 Mon Sep 17 00:00:00 2001 From: "L. R. Couto" <57910428+lrcouto@users.noreply.github.com> Date: Tue, 16 Apr 2024 11:43:56 -0300 Subject: [PATCH] Change path to starters test (#3816) Signed-off-by: lrcouto --- kedro/templates/project/hooks/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kedro/templates/project/hooks/utils.py b/kedro/templates/project/hooks/utils.py index 82d3769035..cb34ac1784 100644 --- a/kedro/templates/project/hooks/utils.py +++ b/kedro/templates/project/hooks/utils.py @@ -149,7 +149,7 @@ def _remove_pyspark_viz_starter_files(is_viz: bool, python_package_name: str) -> _remove_dir(pipelines_path / pipeline_subdir) # Remove all test files from tests/pipelines/ - test_pipeline_path = current_dir / "tests/pipelines/test_data_science.py" + test_pipeline_path = current_dir / "tests/pipelines/data_science/test_pipeline.py" _remove_file(test_pipeline_path)