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
2 changes: 1 addition & 1 deletion src/ucode/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1667,7 +1667,7 @@ def _fetch_budget_recommendation(state: dict, managed: dict | None) -> dict | No


def _launch_title(tool: str) -> str:
return f"Launching {TOOL_SPECS[tool]['display'].title()} with Unity Gateway"
return f"Launching {TOOL_SPECS[tool]['display']} with Unity Gateway"


def _print_budget_panel(recommendation: dict, tool: str, managed: dict | None = None) -> None:
Expand Down
4 changes: 4 additions & 0 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1131,6 +1131,10 @@ def test_skipped_when_already_configured(self):
[
("claude", "Launching Claude Code with Unity Gateway"),
("codex", "Launching Codex with Unity Gateway"),
("gemini", "Launching Gemini CLI with Unity Gateway"),
("opencode", "Launching OpenCode with Unity Gateway"),
("copilot", "Launching GitHub Copilot CLI with Unity Gateway"),
("pi", "Launching Pi with Unity Gateway"),
],
)
def test_launch_title(tool, expected):
Expand Down
Loading