deps (matrix rust sdk) : bump version to 25.06.10

This commit is contained in:
ganfra 2025-06-10 15:52:28 +02:00
parent f224fe5c3b
commit 77f6cab1a7
6 changed files with 10 additions and 8 deletions

View file

@ -83,7 +83,7 @@ import kotlin.time.Duration.Companion.seconds
@Test
fun `present - with CallType RoomCall sets call as active, loads URL, runs WidgetDriver and notifies the other clients a call started`() = runTest {
val sendCallNotificationIfNeededLambda = lambdaRecorder<Result<Unit>> { Result.success(Unit) }
val sendCallNotificationIfNeededLambda = lambdaRecorder<Result<Boolean>> { Result.success(true) }
val syncService = FakeSyncService(SyncState.Running)
val fakeRoom = FakeJoinedRoom(sendCallNotificationIfNeededResult = sendCallNotificationIfNeededLambda)
val client = FakeMatrixClient(syncService = syncService).apply {