Skip to content

Commit

Permalink
Test : 테스트코드 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Suhun0331 committed Jul 26, 2024
1 parent 299e273 commit 3232ec5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public class MemberServiceTest {
.birthDate(LocalDate.now())
.password("passwordTest")
.passwordConfirm("passwordTest")
.marketingAgree(Boolean.TRUE)
.marketingAgree(MarketingAgree.BOTH)
.userState(State.ACTIVATE)
.build();

Expand All @@ -80,7 +80,7 @@ public class MemberServiceTest {
.birthDate(LocalDate.now())
.password("passwordTest")
.passwordConfirm("wrongPassword")
.marketingAgree(Boolean.TRUE)
.marketingAgree(MarketingAgree.BOTH)
.userState(State.ACTIVATE)
.build();

Expand Down

0 comments on commit 3232ec5

Please sign in to comment.