From e3c5334edf4b508ced9da636172aa59eed3386a7 Mon Sep 17 00:00:00 2001 From: Stephane Segning Lambou Date: Fri, 29 May 2026 02:22:47 +0200 Subject: [PATCH] fix(test-env): format WireMock catalog fixture MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The OpenRouter catalog fixture had multi-line `supported_parameters` arrays that Biome collapses to a single line. CI's `format:check` scans the whole repo (62 files) and caught it on main after #18 merged. It slipped through locally because biome.json excludes `**/.claude`, and the dev worktree lives under `.claude/worktrees//` — so `pnpm format:check` from a worktree reports "no files processed" and exits 0. (Tracked separately: make the format/lint scripts robust to worktree CWD.) Co-Authored-By: Claude Opus 4.7 (1M context) --- test-env/wiremock/__files/openrouter-catalog.json | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/test-env/wiremock/__files/openrouter-catalog.json b/test-env/wiremock/__files/openrouter-catalog.json index 18fccc1..969d0d4 100644 --- a/test-env/wiremock/__files/openrouter-catalog.json +++ b/test-env/wiremock/__files/openrouter-catalog.json @@ -19,13 +19,7 @@ "max_completion_tokens": 8192, "context_length": 200000 }, - "supported_parameters": [ - "tools", - "tool_choice", - "temperature", - "max_tokens", - "stop" - ] + "supported_parameters": ["tools", "tool_choice", "temperature", "max_tokens", "stop"] }, { "id": "openai/gpt-4o", @@ -44,12 +38,7 @@ "max_completion_tokens": 16384, "context_length": 128000 }, - "supported_parameters": [ - "tools", - "tool_choice", - "temperature", - "reasoning" - ] + "supported_parameters": ["tools", "tool_choice", "temperature", "reasoning"] }, { "id": "test/text-only",