Update AMP to AOP (#3941)

Co-authored-by: Lorenze Jay <63378463+lorenzejay@users.noreply.github.com>
This commit is contained in:
João Moura
2025-11-24 13:15:24 -08:00
committed by GitHub
parent f3c5d1e351
commit 9c84475691
205 changed files with 592 additions and 594 deletions

View File

@@ -55,7 +55,7 @@ class TestAuthenticationCommand:
self.auth_command.login()
mock_console_print.assert_called_once_with(
"Signing in to CrewAI AMP...\n", style="bold blue"
"Signing in to CrewAI AOP...\n", style="bold blue"
)
mock_get_device.assert_called_once()
mock_display.assert_called_once_with(
@@ -301,7 +301,7 @@ class TestAuthenticationCommand:
expected_calls = [
call("\nWaiting for authentication... ", style="bold blue", end=""),
call("Success!", style="bold green"),
call("\n[bold green]Welcome to CrewAI AMP![/bold green]\n"),
call("\n[bold green]Welcome to CrewAI AOP![/bold green]\n"),
]
mock_console_print.assert_has_calls(expected_calls)