From 87e2e1e315bb1e359fd3c140a161acbcfedf6907 Mon Sep 17 00:00:00 2001 From: Ahdra Merali <90615669+AhdraMeraliQB@users.noreply.github.com> Date: Wed, 29 Nov 2023 18:28:41 +0000 Subject: [PATCH] Fix broken tests (#3366) Signed-off-by: Ahdra Merali Signed-off-by: lrcouto --- tests/framework/cli/test_starters.py | 2 +- tests/tools/test_cli.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/framework/cli/test_starters.py b/tests/framework/cli/test_starters.py index a7e01e0b01..faff14607b 100644 --- a/tests/framework/cli/test_starters.py +++ b/tests/framework/cli/test_starters.py @@ -965,7 +965,7 @@ def test_invalid_tools(self, fake_kedro_cli, bad_input): assert result.exit_code != 0 assert "is an invalid value for project tools." in result.output assert ( - "Invalid input. Please select valid options for tools using comma-separated values, ranges, or 'all/none'.\n" + "Invalid input. Please select valid options for project tools using comma-separated values, ranges, or 'all/none'.\n" in result.output ) diff --git a/tests/tools/test_cli.py b/tests/tools/test_cli.py index 30ea89f625..b50778c6a3 100644 --- a/tests/tools/test_cli.py +++ b/tests/tools/test_cli.py @@ -102,7 +102,7 @@ def test_get_cli_structure_depth(self, mocker, fake_metadata): "--config", "-c", "--tools", - "-a", + "-t", "--example", "-e", "--starter",