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,
votes: ImmutableMap<String, ImmutableList<UserId>> = 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,
)