diff --git a/src/auto-reply/reply/dispatch-from-config.test.ts b/src/auto-reply/reply/dispatch-from-config.test.ts index 3f6c40acfa7..7f9b4d9397c 100644 --- a/src/auto-reply/reply/dispatch-from-config.test.ts +++ b/src/auto-reply/reply/dispatch-from-config.test.ts @@ -2050,7 +2050,7 @@ describe("dispatchReplyFromConfig", () => { acp: { enabled: true, dispatch: { enabled: true }, - stream: { coalesceIdleMs: 0, maxChunkChars: 128 }, + stream: { deliveryMode: "live", coalesceIdleMs: 0, maxChunkChars: 128 }, }, } as OpenClawConfig; const dispatcher = createDispatcher(); @@ -2470,7 +2470,7 @@ describe("dispatchReplyFromConfig", () => { acp: { enabled: true, dispatch: { enabled: true }, - stream: { coalesceIdleMs: 0, maxChunkChars: 256 }, + stream: { deliveryMode: "live", coalesceIdleMs: 0, maxChunkChars: 256 }, }, } as OpenClawConfig; const dispatcher = createDispatcher(); @@ -2548,7 +2548,7 @@ describe("dispatchReplyFromConfig", () => { acp: { enabled: true, dispatch: { enabled: true }, - stream: { coalesceIdleMs: 0, maxChunkChars: 256 }, + stream: { deliveryMode: "live", coalesceIdleMs: 0, maxChunkChars: 256 }, }, } as OpenClawConfig; const dispatcher = createDispatcher(); @@ -2601,7 +2601,7 @@ describe("dispatchReplyFromConfig", () => { acp: { enabled: true, dispatch: { enabled: true }, - stream: { coalesceIdleMs: 0, maxChunkChars: 256 }, + stream: { deliveryMode: "live", coalesceIdleMs: 0, maxChunkChars: 256 }, }, } as OpenClawConfig; const dispatcher = createDispatcher();