Skip to content

Commit 5c56f8f

Browse files
committed
Fix array-type eslint in Codex Responses adapter tests
1 parent 1c8f824 commit 5c56f8f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/provider/codex-responses-adapter.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ describe("createCodexResponsesAdapter", () => {
7272
systemPrompt: "operating prompt body",
7373
});
7474
const body = JSON.parse(request.body) as {
75-
input: Array<{ role?: string; content?: Array<{ text?: string }> }>;
75+
input: { role?: string; content?: { text?: string }[] }[];
7676
};
7777
const bridgeText = body.input[0]?.content?.[0]?.text ?? "";
7878

0 commit comments

Comments
 (0)