Skip to content

Commit 5e8c289

Browse files
Fix test
1 parent ad2cbb7 commit 5e8c289

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

app/src/main/kotlin/app/fyreplace/fyreplace/fakes/Responses.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ fun <T> ok(body: T): Response<T> = Response.success(body)
88

99
fun <T> created(body: T): Response<T> = Response.success(body)
1010

11-
fun <T> noContent(): Response<T> = Response.success(null)
11+
fun noContent(): Response<Unit> = Response.success(Unit)
1212

1313
fun <T> badRequest(): Response<T> = error(400, "Bad Request".toResponseBody())
1414

app/src/main/kotlin/app/fyreplace/fyreplace/fakes/api/FakeUsersEndpointApi.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class FakeUsersEndpointApi : UsersEndpointApi {
4040
override suspend fun deleteCurrentUser(): Response<Unit> =
4141
throw NotImplementedError()
4242

43-
override suspend fun deleteCurrentUserAvatar() = noContent<Unit>()
43+
override suspend fun deleteCurrentUserAvatar() = noContent()
4444

4545
override suspend fun getCurrentUser() = ok(User.placeholder)
4646

app/src/test/kotlin/app/fyreplace/fyreplace/test/screens/SettingsViewModelTests.kt

+1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ class SettingsViewModelTests : TestsBase() {
7979
fun `Removing avatar produces no failures`() = runTest {
8080
val eventBus = FakeEventBus()
8181
val viewModel = makeViewModel(eventBus)
82+
runCurrent()
8283
viewModel.updateAvatar(FakeUsersEndpointApi.NORMAL_IMAGE_FILE)
8384
backgroundScope.launch { viewModel.currentUser.collect() }
8485

0 commit comments

Comments
 (0)