From 6e9098d9d014473c849197c96d112edbd1af5c5f Mon Sep 17 00:00:00 2001 From: Chen Si Date: Sat, 5 Sep 2026 16:33:21 -0700 Subject: [PATCH] Add skill_generation_state to BaseAgent test fixture Release 1.1.12 (roe-main 1-0-96) adds a required, nullable skill_generation_state field to BaseAgent. The hand-written fixture in test_agents_wrapper_transport.py predates it, so the generated BaseAgent.from_dict raises KeyError and the release PR's test job fails. Co-Authored-By: Claude Fable 5.1 --- tests/unit/test_agents_wrapper_transport.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/unit/test_agents_wrapper_transport.py b/tests/unit/test_agents_wrapper_transport.py index 438e9cd..8e6cdcd 100644 --- a/tests/unit/test_agents_wrapper_transport.py +++ b/tests/unit/test_agents_wrapper_transport.py @@ -33,6 +33,7 @@ def _base_agent_json() -> dict[str, object]: "most_recent_job": None, "engine_name": "Engine", "tags": [], + "skill_generation_state": None, }