From 5bdfa1d91d9c9ea6b1f5a81d042c7120a72d6538 Mon Sep 17 00:00:00 2001 From: Denton Social Date: Thu, 24 Sep 2026 01:29:18 -0500 Subject: [PATCH] Fix integration test: assign generated body to draft.code before materializing --- tests/integration/test_pipeline.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/test_pipeline.py b/tests/integration/test_pipeline.py index e610092..1ae2882 100644 --- a/tests/integration/test_pipeline.py +++ b/tests/integration/test_pipeline.py @@ -177,6 +177,7 @@ def test_generate_skill_body_codegen(tmp_path): tree, ) print(f"generated {len(code)} bytes of skill body") + draft.code = code store = SkillBodyStore(str(tmp_path / "skills")) skill = materialize_skill(draft, "tracking", store) assert callable(skill.predict) and callable(skill.act)