fix: address Copilot review feedback on PR #416

- Use consistent terminology in confirmation message ("background color"
  to match "text color")
- Tighten test assertions for invalid parameter validation to check
  parameter name and all allowed values instead of loose substring matches
- Remove unrelated calendar_tools.py changes (lambda reformatting, guest
  permissions, query_freebusy) that belong in separate PRs

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Arno
2026-02-06 00:01:20 +00:00
parent 817db85522
commit e5a746d8ca
3 changed files with 67 additions and 216 deletions

View File

@@ -574,7 +574,7 @@ async def _format_sheet_range_impl(
# Build confirmation message
applied_parts = []
if bg_color_parsed:
applied_parts.append(f"background {background_color}")
applied_parts.append(f"background color {background_color}")
if text_color_parsed:
applied_parts.append(f"text color {text_color}")
if number_format: