Skip to content

Commit

Permalink
refactor: (#78) 비교 부호 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
khcho0125 committed Sep 25, 2022
1 parent 5418d5d commit 7e82c83
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class SendAuthCodePolicy(
throw CertifiedEmailException.EXCEPTION
}

if (authCodeLimit.attemptCount <= AuthCodeLimit.MAX_ATTEMPT_COUNT) {
if (authCodeLimit.attemptCount >= AuthCodeLimit.MAX_ATTEMPT_COUNT) {
throw ExceededSendAuthCodeRequestException.EXCEPTION
}

Expand Down

0 comments on commit 7e82c83

Please sign in to comment.