Browse Source

Fix Konsist test by removing the explicit type.

pull/2374/head
Benoit Marty 7 months ago
parent
commit
1df1e83efc
  1. 4
      features/messages/impl/src/test/kotlin/io/element/android/features/messages/impl/typing/TypingNotificationPresenterTest.kt

4
features/messages/impl/src/test/kotlin/io/element/android/features/messages/impl/typing/TypingNotificationPresenterTest.kt

@ -178,12 +178,10 @@ class TypingNotificationPresenterTest { @@ -178,12 +178,10 @@ class TypingNotificationPresenterTest {
sessionPreferencesStore: SessionPreferencesStore = InMemorySessionPreferencesStore(
isRenderTypingNotificationsEnabled = true
),
): TypingNotificationPresenter {
return TypingNotificationPresenter(
) = TypingNotificationPresenter(
room = matrixRoom,
sessionPreferencesStore = sessionPreferencesStore,
)
}
private fun createDefaultRoomMember(
userId: UserId,

Loading…
Cancel
Save