From c3d158f03515336f536fe70847edcfd28a673342 Mon Sep 17 00:00:00 2001 From: VascoSch92 Date: Thu, 6 Aug 2026 18:12:54 +0200 Subject: [PATCH] fix: update codex-acp version assertion in acp-providers test The unit test hardcoded @agentclientprotocol/codex-acp@1.1.2, which went stale after src/models/acp-providers.json was synced to the current openhands-sdk ACP_PROVIDERS (bumped to 1.1.7 in #328). --- src/__tests__/acp-providers.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/__tests__/acp-providers.test.ts b/src/__tests__/acp-providers.test.ts index 02a7fd5..f637721 100644 --- a/src/__tests__/acp-providers.test.ts +++ b/src/__tests__/acp-providers.test.ts @@ -41,7 +41,7 @@ describe('ACP provider credential descriptors', () => { it('uses the maintained Codex adapter and exposes GPT-5.6 models', () => { const codex = ACP_PROVIDERS.codex; - expect(codex.default_command).toEqual(['npx', '-y', '@agentclientprotocol/codex-acp@1.1.2']); + expect(codex.default_command).toEqual(['npx', '-y', '@agentclientprotocol/codex-acp@1.1.7']); expect(codex.default_session_mode).toBe('agent-full-access'); expect(codex.available_models.map((model) => model.id)).toEqual( expect.arrayContaining(['gpt-5.6', 'gpt-5.6-sol', 'gpt-5.6-terra', 'gpt-5.6-luna'])