fix: use correct msg_out/msg_err keys for Agent Engine sandbox output

PiperOrigin-RevId: 874126181
This commit is contained in:
Google Team Member
2026-02-23 09:56:49 -08:00
committed by Copybara-Service
parent 4ca904f111
commit b1e33a90b4
2 changed files with 3 additions and 3 deletions
@@ -71,7 +71,7 @@ class TestAgentEngineSandboxCodeExecutor:
mock_json_output = MagicMock()
mock_json_output.mime_type = "application/json"
mock_json_output.data = json.dumps(
{"stdout": "hello world", "stderr": ""}
{"msg_out": "hello world", "msg_err": ""}
).encode("utf-8")
mock_json_output.metadata = None