From 4f4b2838852e4783895eb932f957da2393b46a74 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Tue, 22 Apr 2025 16:41:42 +0000 Subject: [PATCH] Fix AgentAction constructor call in test Co-Authored-By: Joe Moura --- tests/tools/test_custom_tool_invocation.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/tools/test_custom_tool_invocation.py b/tests/tools/test_custom_tool_invocation.py index b92636276..b42bcd88e 100644 --- a/tests/tools/test_custom_tool_invocation.py +++ b/tests/tools/test_custom_tool_invocation.py @@ -51,8 +51,7 @@ def test_custom_tool_invocation(): tool="Test Custom Tool", tool_input={"test_param": "test_value"}, thought="I'll use the custom tool", - text="I'll use the Test Custom Tool to get a result", - message_log=[] + text="I'll use the Test Custom Tool to get a result" ) result = executor._execute_tool_and_check_finality(action)