Skip to content

Commit 75cbcc2

Browse files
committed
test(tui): fix event-handler chatLog render mock arity
1 parent dfe4dea commit 75cbcc2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tui/tui-event-handlers.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -975,7 +975,7 @@ describe("tui-event-handlers: handleAgentEvent", () => {
975975
const chatLog = {
976976
...createMockChatLog(),
977977
countPendingUsers: () => pendingUsers.size,
978-
render: () => Array.from(pendingUsers.values()),
978+
render: (_width: number) => Array.from(pendingUsers.values()),
979979
};
980980
const { state, noteLocalRunId, handleChatEvent } = createHandlersHarness({
981981
chatLog: chatLog as unknown as HandlerChatLog,

0 commit comments

Comments
 (0)