Browse Source

Fix compilation issue after rebase.

pull/3450/head
Benoit Marty 1 month ago committed by Benoit Marty
parent
commit
26260aed9f
  1. 4
      libraries/matrix/impl/src/test/kotlin/io/element/android/libraries/matrix/impl/room/MatrixRoomInfoMapperTest.kt

4
libraries/matrix/impl/src/test/kotlin/io/element/android/libraries/matrix/impl/room/MatrixRoomInfoMapperTest.kt

@ -67,6 +67,7 @@ class MatrixRoomInfoMapperTest { @@ -67,6 +67,7 @@ class MatrixRoomInfoMapperTest {
numUnreadNotifications = 13uL,
numUnreadMentions = 14uL,
pinnedEventIds = listOf(AN_EVENT_ID.value),
roomCreator = A_USER_ID.value,
)
)
).isEqualTo(
@ -102,6 +103,7 @@ class MatrixRoomInfoMapperTest { @@ -102,6 +103,7 @@ class MatrixRoomInfoMapperTest {
)
).toImmutableList(),
pinnedEventIds = listOf(AN_EVENT_ID).toPersistentList(),
creator = A_USER_ID,
)
)
}
@ -140,6 +142,7 @@ class MatrixRoomInfoMapperTest { @@ -140,6 +142,7 @@ class MatrixRoomInfoMapperTest {
numUnreadNotifications = 13uL,
numUnreadMentions = 14uL,
pinnedEventIds = emptyList(),
roomCreator = null,
)
)
).isEqualTo(
@ -169,6 +172,7 @@ class MatrixRoomInfoMapperTest { @@ -169,6 +172,7 @@ class MatrixRoomInfoMapperTest {
activeRoomCallParticipants = emptyList<UserId>().toImmutableList(),
heroes = emptyList<MatrixUser>().toImmutableList(),
pinnedEventIds = emptyList<EventId>().toPersistentList(),
creator = null,
)
)
}

Loading…
Cancel
Save