Skip to content

Commit

Permalink
test: 시간 수정으로 인한 일부 테스트 코드 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekks committed Oct 14, 2024
1 parent 5d2fb39 commit f4e7eba
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1368,7 +1368,7 @@ void applyMeeting_ShouldFailWhenCapacityExceeded() {
.title("모임 지원 테스트")
.category(MeetingCategory.STUDY)
.imageURL(List.of(new ImageUrlVO(0, "testImage.jpg")))
.startDate(LocalDateTime.of(2024, 10, 6, 0, 0, 0))
.startDate(LocalDateTime.of(2024, 4, 23, 0, 0, 0))
.endDate(LocalDateTime.of(2029, 10, 7, 23, 59, 59))
.capacity(1)
.desc("모임 지원 테스트입니다.")
Expand Down Expand Up @@ -1440,7 +1440,7 @@ void applyMeeting_Fail_WhenAlreadyApplied() {
.title("모임 지원 테스트")
.category(MeetingCategory.STUDY)
.imageURL(List.of(new ImageUrlVO(0, "testImage.jpg")))
.startDate(LocalDateTime.of(2024, 10, 6, 0, 0, 0))
.startDate(LocalDateTime.of(2024, 4, 23, 0, 0, 0))
.endDate(LocalDateTime.of(2029, 10, 7, 23, 59, 59))
.capacity(50)
.desc("모임 지원 테스트입니다.")
Expand Down Expand Up @@ -1505,7 +1505,7 @@ void applyMeeting_Fail_WhenOutsideApplicationPeriod() {
.title("모임 지원 테스트")
.category(MeetingCategory.STUDY)
.imageURL(List.of(new ImageUrlVO(0, "testImage.jpg")))
.startDate(LocalDateTime.of(2030, 10, 7, 0, 0, 0))
.startDate(LocalDateTime.of(2030, 4, 7, 0, 0, 0))
.endDate(LocalDateTime.of(2030, 10, 7, 23, 59, 59))
.capacity(50)
.desc("모임 지원 테스트입니다.")
Expand Down

0 comments on commit f4e7eba

Please sign in to comment.