Skip to content

Commit

Permalink
fix lint and test
Browse files Browse the repository at this point in the history
Signed-off-by: rashidakanchwala <[email protected]>
  • Loading branch information
rashidakanchwala committed Nov 1, 2024
1 parent 9158636 commit d975820
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion package/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,12 @@ def example_api_for_pipelines_with_additional_tags(
{},
)
mocker.patch(
"kedro_viz.api.rest.responses.data_access_manager", new=data_access_manager
"kedro_viz.api.rest.responses.pipelines.data_access_manager",
new=data_access_manager,
)
mocker.patch(
"kedro_viz.api.rest.responses.nodes.data_access_manager",
new=data_access_manager,
)
yield api

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def test_endpoint_main_no_default_pipeline(self, example_api_no_default_pipeline
{"id": "data_science", "name": "data_science"},
{"id": "data_processing", "name": "data_processing"},
]

def test_endpoint_main_for_pipelines_with_additional_tags(
self,
example_api_for_pipelines_with_additional_tags,
Expand Down

0 comments on commit d975820

Please sign in to comment.