Skip to content

Commit ae20777

Browse files
committed
Chore: 누락한 suspend 제거
1 parent a417594 commit ae20777

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data/src/test/java/com/threegap/bitnagil/data/user/repositoryImpl/UserRepositoryImplTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ class UserRepositoryImplTest {
102102
private val _userProfile = MutableStateFlow<UserProfile?>(null)
103103
override val userProfile: StateFlow<UserProfile?> = _userProfile.asStateFlow()
104104

105-
override suspend fun saveUserProfile(userProfile: UserProfile) {
105+
override fun saveUserProfile(userProfile: UserProfile) {
106106
_userProfile.update { userProfile }
107107
}
108108

0 commit comments

Comments
 (0)