Skip to content

Commit 88cbbc8

Browse files
committed
test: satisfy no-array-sort lint
1 parent a537cd6 commit 88cbbc8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extensions/codex/src/app-server/side-question.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ describe("runCodexAppServerSideQuestion", () => {
255255
const forkCall = client.request.mock.calls[0];
256256
expect(forkCall?.[0]).toBe("thread/fork");
257257
const forkParams = forkCall?.[1] as Record<string, unknown> | undefined;
258-
expect(Object.keys(forkParams ?? {}).sort()).toEqual([
258+
expect(Object.keys(forkParams ?? {}).toSorted()).toEqual([
259259
"approvalPolicy",
260260
"approvalsReviewer",
261261
"config",

0 commit comments

Comments
 (0)