File tree 3 files changed +3
-2
lines changed
main/kotlin/app/fyreplace/fyreplace/fakes
test/kotlin/app/fyreplace/fyreplace/test/screens
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ fun <T> ok(body: T): Response<T> = Response.success(body)
8
8
9
9
fun <T > created (body : T ): Response <T > = Response .success(body)
10
10
11
- fun < T > noContent (): Response <T > = Response .success(null )
11
+ fun noContent (): Response <Unit > = Response .success(Unit )
12
12
13
13
fun <T > badRequest (): Response <T > = error(400 , " Bad Request" .toResponseBody())
14
14
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ class FakeUsersEndpointApi : UsersEndpointApi {
40
40
override suspend fun deleteCurrentUser (): Response <Unit > =
41
41
throw NotImplementedError ()
42
42
43
- override suspend fun deleteCurrentUserAvatar () = noContent< Unit > ()
43
+ override suspend fun deleteCurrentUserAvatar () = noContent()
44
44
45
45
override suspend fun getCurrentUser () = ok(User .placeholder)
46
46
Original file line number Diff line number Diff line change @@ -79,6 +79,7 @@ class SettingsViewModelTests : TestsBase() {
79
79
fun `Removing avatar produces no failures` () = runTest {
80
80
val eventBus = FakeEventBus ()
81
81
val viewModel = makeViewModel(eventBus)
82
+ runCurrent()
82
83
viewModel.updateAvatar(FakeUsersEndpointApi .NORMAL_IMAGE_FILE )
83
84
backgroundScope.launch { viewModel.currentUser.collect() }
84
85
You can’t perform that action at this time.
0 commit comments