User search: provide 10 results not 5

Also refactor slightly so the caller specifies the number of
results, which lets all the constants sit in the repository.
This commit is contained in:
Chris Smith 2023-06-01 10:22:19 +01:00
parent a456becc6e
commit 4e23550031
5 changed files with 8 additions and 11 deletions

View file

@ -25,7 +25,7 @@ class FakeUserListDataSource : UserListDataSource {
private var searchResult: List<MatrixUser> = emptyList()
private var profile: MatrixUser? = null
override suspend fun search(query: String): List<MatrixUser> = searchResult
override suspend fun search(query: String, count: Long): List<MatrixUser> = searchResult.take(count.toInt())
override suspend fun getProfile(userId: UserId): MatrixUser? = profile