feat: small implementation change

ref: N25B-400
This commit is contained in:
Pim Hutting
2026-01-08 11:25:53 +01:00
parent 6b34f4b82c
commit b27e5180c4
2 changed files with 5 additions and 3 deletions

View File

@@ -95,7 +95,9 @@ async def test_receive_programs_valid_and_invalid():
assert forwarded.phases[0].goals[0].name == "G1"
# Verify history clear was triggered
assert manager._send_clear_llm_history.await_count == 1
assert (
manager._send_clear_llm_history.await_count == 2
) # first sends program to UserInterrupt, then clears LLM
@pytest.mark.asyncio