From 07b2abfe441d32b2f2cb952c1eb9f1761fce5f63 Mon Sep 17 00:00:00 2001 From: Greyson LaLonde Date: Fri, 23 Jan 2026 10:07:27 -0500 Subject: [PATCH] chore: update test assumption --- lib/crewai/tests/test_crew.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/crewai/tests/test_crew.py b/lib/crewai/tests/test_crew.py index 339657738..93a1fc7ae 100644 --- a/lib/crewai/tests/test_crew.py +++ b/lib/crewai/tests/test_crew.py @@ -1417,7 +1417,7 @@ async def test_kickoff_async_basic_functionality_and_output(): assert isinstance(result, str), "Result should be a string" assert result == expected_output, "Result should match expected output" - mock_kickoff.assert_called_once_with(inputs) + mock_kickoff.assert_called_once_with(inputs, None) @pytest.mark.asyncio @@ -1463,7 +1463,7 @@ async def test_async_kickoff_for_each_async_basic_functionality_and_output(): assert len(results) == len(inputs) assert results == expected_outputs for input_data in inputs: - mock_kickoff_async.assert_any_call(inputs=input_data) + mock_kickoff_async.assert_any_call(inputs=input_data, input_files=None) @pytest.mark.asyncio