From 58746ebd4a1fab63f3b53dd7330918100d661f09 Mon Sep 17 00:00:00 2001 From: Archkon <180910180+Archkon@users.noreply.github.com> Date: Tue, 10 Dec 2024 13:01:23 +0800 Subject: [PATCH] Update test_main.py typo error --- tests/cli/tools/test_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cli/tools/test_main.py b/tests/cli/tools/test_main.py index 3804fb9b4..10c29b920 100644 --- a/tests/cli/tools/test_main.py +++ b/tests/cli/tools/test_main.py @@ -85,7 +85,7 @@ def test_install_success(mock_get, mock_subprocess_run): env=unittest.mock.ANY ) - assert "Succesfully installed sample-tool" in output + assert "Successfully installed sample-tool" in output @patch("crewai.cli.plus_api.PlusAPI.get_tool")