Fix test compilation again.

This commit is contained in:
ganfra 2023-12-14 16:08:22 +01:00
parent 3ceb2599d8
commit 36110dbfac

View file

@ -129,6 +129,7 @@ fun aPollContent(
maxSelections: ULong = 1u, maxSelections: ULong = 1u,
votes: ImmutableMap<String, ImmutableList<UserId>> = persistentMapOf(), votes: ImmutableMap<String, ImmutableList<UserId>> = persistentMapOf(),
endTime: ULong? = null, endTime: ULong? = null,
isEdited: Boolean = false,
) = PollContent( ) = PollContent(
question = question, question = question,
kind = kind, kind = kind,
@ -136,4 +137,5 @@ fun aPollContent(
answers = answers, answers = answers,
votes = votes, votes = votes,
endTime = endTime, endTime = endTime,
isEdited = isEdited,
) )