manaul correction attempts

This commit is contained in:
ed
2026-06-15 19:14:22 -04:00
parent 33fcedefc7
commit f9832b07b3
7 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ def test_fr1_error_becomes_discussion_entry(mock_app: App, monkeypatch: pytest.M
When send_result returns errors, _handle_request_event must enqueue a
'response' event with status='error' and the error message in the text.
Currently broken: the code calls deprecated ai_client.send() which
Currently broken: the code calls deprecated ai_client.send_result() which
silently returns '' on error. The empty string is then routed to the
event_queue as a 'done' response and _on_comms_entry filters it out
via `if text_content.strip():` (src/app_controller.py:3801).