From f4103d0a8267b5d44b2d867cb0ae249ab69cd609 Mon Sep 17 00:00:00 2001 From: Neil Date: Sun, 20 Sep 2026 22:56:09 -0700 Subject: [PATCH] test(orchestration): satisfy checked receipt typing --- .../rpc/methods/orchestration/messaging/send-group.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)