Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tests/unittests/tools/test_bash_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ async def test_resource_limits_set(self, workspace, tool_context_confirmed):
)
tool = bash_tool.ExecuteBashTool(workspace=workspace, policy=policy)
mock_process = mock.AsyncMock()
mock_process.pid = None # Ensure finally block doesn't try to kill it
mock_process.communicate.return_value = (b"", b"")
mock_exec = mock.AsyncMock(return_value=mock_process)

Expand Down
Loading