Rename userAvatarURLString to userAvatarUrl

This commit is contained in:
Benoit Marty 2024-01-19 15:59:50 +01:00
parent d1c7520065
commit be0da18a7b
6 changed files with 9 additions and 9 deletions

View file

@ -122,7 +122,7 @@ class RoomListPresenterTests {
fun `present - should start with no user and then load user with error`() = runTest {
val matrixClient = FakeMatrixClient(
userDisplayName = Result.failure(AN_EXCEPTION),
userAvatarURLString = Result.failure(AN_EXCEPTION),
userAvatarUrl = Result.failure(AN_EXCEPTION),
)
val scope = CoroutineScope(coroutineContext + SupervisorJob())
val presenter = createRoomListPresenter(client = matrixClient, coroutineScope = scope)