Skip to content

Commit

Permalink
ASAP-199 fix: 네임드 파라미터 도입
Browse files Browse the repository at this point in the history
  • Loading branch information
tlarbals824 committed Oct 12, 2024
1 parent 0ecd1d3 commit 2375e33
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ class SocialLoginServiceTest :
} returns null
every {
mockUserTokenConvertPort.generateRegisterToken(
authInfo.socialId,
authInfo.socialLoginProvider.name,
authInfo.username,
authInfo.profileImage,
authInfo.email,
socialId = authInfo.socialId,
socialLoginProvider = authInfo.socialLoginProvider.name,
username = authInfo.username,
email = authInfo.email,
profileImage = authInfo.profileImage,
)
} returns "registerToken"
`when`("가입되지 않았다면") {
Expand Down

0 comments on commit 2375e33

Please sign in to comment.