style: format

This commit is contained in:
banteg
2026-01-01 02:36:36 +04:00
parent ab5016c256
commit 29bfa29006
3 changed files with 6 additions and 6 deletions
-1
View File
@@ -66,4 +66,3 @@ def test_translate_mcp_tool_call_summarizes_legacy_structured_key() -> None:
assert len(out) == 1
assert isinstance(out[0], ActionEvent)
assert out[0].action.detail["result_summary"]["has_structured"] is True
+5 -2
View File
@@ -81,7 +81,8 @@ def test_render_event_cli_handles_action_kinds() -> None:
)
assert any("tool: github.search_issues" in line for line in out)
assert any(
"files: added `README.md`, updated `src/compute_answer.py`" in line for line in out
"files: added `README.md`, updated `src/compute_answer.py`" in line
for line in out
)
assert any(line.startswith("✗ stream error") for line in out)
@@ -103,7 +104,9 @@ def test_file_change_renders_relative_paths_inside_cwd() -> None:
},
)
)
assert any("files: updated `README.md`, updated `README.md`" in line for line in out)
assert any(
"files: updated `README.md`, updated `README.md`" in line for line in out
)
def test_progress_renderer_renders_progress_and_final() -> None: