From 36be15436ac4d42d6502b74445494a02e55ffc25 Mon Sep 17 00:00:00 2001 From: Timo K Date: Tue, 26 Aug 2025 17:58:46 +0200 Subject: [PATCH] fix linter Signed-off-by: Timo K --- src/state/CallViewModel.test.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/state/CallViewModel.test.ts b/src/state/CallViewModel.test.ts index 02297dd4..2bb810bb 100644 --- a/src/state/CallViewModel.test.ts +++ b/src/state/CallViewModel.test.ts @@ -1249,8 +1249,10 @@ describe("shouldWaitForCallPickup$", () => { r: () => { rtcSession.emit( MatrixRTCSessionEvent.DidSendCallNotification, - { lifetime: 30 } as unknown as IRTCNotificationContent, - {} as unknown as ICallNotifyContent, + { lifetime: 30 } as unknown as { + event_id: string; + } & IRTCNotificationContent, + {} as unknown as { event_id: string } & ICallNotifyContent, ); }, });