Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tests/ui_and_conv/test_modal_lifecycle.py
Original file line number Diff line number Diff line change
Expand Up @@ -858,6 +858,7 @@ async def test_render_agent_status_excludes_panels_in_interactive() -> None:
view._compacting_spinner = None
view._current_content_block = None
view._tool_call_blocks = {}
view._current_step_retry = None
view._live_notification_blocks = cast(
Any, type("deque", (), {"__iter__": lambda self: iter([])})()
)
Expand Down
6 changes: 3 additions & 3 deletions tests_e2e/test_wire_protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ def test_initialize_handshake(tmp_path) -> None:
try:
resp = send_initialize(wire)
result = _as_dict(resp.get("result"))
assert result.get("protocol_version") == "1.9"
assert result.get("protocol_version") == "1.10"
assert "slash_commands" in result
assert normalize_response(resp) == snapshot(
{
"result": {
"protocol_version": "1.9",
"protocol_version": "1.10",
"server": {"name": "Kimi Code CLI", "version": "<VERSION>"},
"slash_commands": [
{
Expand Down Expand Up @@ -151,7 +151,7 @@ def test_initialize_external_tool_conflict(tmp_path) -> None:
assert normalize_response(resp) == snapshot(
{
"result": {
"protocol_version": "1.9",
"protocol_version": "1.10",
"server": {"name": "Kimi Code CLI", "version": "<VERSION>"},
"slash_commands": [
{
Expand Down
Loading