Skip to content

Commit

Permalink
fix : tokenSet collectWhile
Browse files Browse the repository at this point in the history
  • Loading branch information
nohjunh committed May 11, 2024
1 parent 1bdfe0a commit dc14889
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package online.partyrun.partyrunapplication.core.testing.repository

import kotlinx.coroutines.channels.BufferOverflow
import kotlinx.coroutines.flow.MutableSharedFlow
import kotlinx.coroutines.flow.first
import online.partyrun.partyrunapplication.core.common.result.Result
import online.partyrun.partyrunapplication.core.data.repository.SignInRepository
import online.partyrun.partyrunapplication.core.model.auth.GoogleIdToken
Expand All @@ -21,7 +22,7 @@ class TestSignInRepository : SignInRepository {
}

override suspend fun signInWithGoogleTokenViaServer(idToken: GoogleIdToken): Result<SignInToken> {
TODO("Not yet implemented")
return tokenSet.first()
}

}

0 comments on commit dc14889

Please sign in to comment.