From 36110dbfac176aeb9f6fccf7e7f1077ff378bacb Mon Sep 17 00:00:00 2001 From: ganfra Date: Thu, 14 Dec 2023 16:08:22 +0100 Subject: [PATCH] Fix test compilation again. --- .../android/libraries/matrix/test/timeline/TimelineFixture.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libraries/matrix/test/src/main/kotlin/io/element/android/libraries/matrix/test/timeline/TimelineFixture.kt b/libraries/matrix/test/src/main/kotlin/io/element/android/libraries/matrix/test/timeline/TimelineFixture.kt index 606aade962..0cbbe81eef 100644 --- a/libraries/matrix/test/src/main/kotlin/io/element/android/libraries/matrix/test/timeline/TimelineFixture.kt +++ b/libraries/matrix/test/src/main/kotlin/io/element/android/libraries/matrix/test/timeline/TimelineFixture.kt @@ -129,6 +129,7 @@ fun aPollContent( maxSelections: ULong = 1u, votes: ImmutableMap> = persistentMapOf(), endTime: ULong? = null, + isEdited: Boolean = false, ) = PollContent( question = question, kind = kind, @@ -136,4 +137,5 @@ fun aPollContent( answers = answers, votes = votes, endTime = endTime, + isEdited = isEdited, )