From cfcb8f4edac0c570696f4ff01d1c632f52ae3c43 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 29 Apr 2026 06:48:56 +0100 Subject: [PATCH] test(ci): fix current validation shards --- extensions/codex/src/app-server/run-attempt.test.ts | 2 +- src/plugins/compat/registry.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/codex/src/app-server/run-attempt.test.ts b/extensions/codex/src/app-server/run-attempt.test.ts index b8dbfcace05..4f2abc4a862 100644 --- a/extensions/codex/src/app-server/run-attempt.test.ts +++ b/extensions/codex/src/app-server/run-attempt.test.ts @@ -173,7 +173,7 @@ function createAppServerHarness( await vi.waitFor( () => { if (!requests.some((entry) => entry.method === method)) { - const mockMethods = request.mock.calls.map(([calledMethod]) => String(calledMethod)); + const mockMethods = request.mock.calls.map(([calledMethod]) => calledMethod); throw new Error( `expected app-server method ${method}; saw ${requests .map((entry) => entry.method) diff --git a/src/plugins/compat/registry.test.ts b/src/plugins/compat/registry.test.ts index 9e72eeca1e5..4b25ceceb16 100644 --- a/src/plugins/compat/registry.test.ts +++ b/src/plugins/compat/registry.test.ts @@ -123,7 +123,7 @@ const knownDeprecatedSurfaceMarkers = [ { code: "bundled-channel-config-schema-legacy", file: "src/plugin-sdk/channel-config-schema-legacy.ts", - marker: "Deprecated bundled-channel compatibility surface", + marker: "Compatibility surface for bundled channel schemas", }, { code: "plugin-sdk-testing-barrel",