diff --git a/src/main/runtime/rpc/methods/orchestration/messaging/send-group.test.ts b/src/main/runtime/rpc/methods/orchestration/messaging/send-group.test.ts index 7c25f8f3b0c..6d3d3fd10a8 100644 --- a/src/main/runtime/rpc/methods/orchestration/messaging/send-group.test.ts +++ b/src/main/runtime/rpc/methods/orchestration/messaging/send-group.test.ts @@ -686,11 +686,11 @@ describe('orchestration.send group addresses', () => { expect(db.getInbox(100)).toHaveLength(0) terminals = [sender, makeSummary('term_ag', { agentIdentity: 'antigravity' })] - const result = (await call('orchestration.send', { + const result = await call('orchestration.send', { from: 'term_coord', to: '@antigravity', subject: 'after ready' - })) as GroupReceipt + }) expect(result.messages).toMatchObject([{ to_handle: `dispatch:${dispatch}` }]) expect(db.getUnreadMessages(`dispatch:${dispatch}`)).toHaveLength(1)