@@ -55,7 +55,7 @@ void validateRecruitBoardTimeWhenNotValid(long minutesOffset) {
5555 }
5656
5757 @ Test
58- @ DisplayName ("StartDateTime이 createdAt + 1일 이후일 경우 예외 없이 통과" )
58+ @ DisplayName ("StartDateTime createdAt + 1일 이후일 경우 예외 없이 통과" )
5959 void validateUpdateRecruitBoardTime () {
6060 // given
6161 LocalDateTime createdAt = LocalDateTime .of (2025 , 1 , 1 , 10 , 0 ); // 2025-01-01 10:00:00
@@ -68,12 +68,12 @@ void validateUpdateRecruitBoardTime() {
6868 }
6969
7070 @ Test
71- @ DisplayName ("StartDateTime이 createdAt + 1일 이전일 경우 예외 발생" )
71+ @ DisplayName ("StartDateTime createdAt + 1일 이전일 경우 예외 발생" )
7272 void validateUpdateRecruitBoardTimeWhenNotValid () {
7373 // given
74- LocalDateTime createdAt = LocalDateTime .of (2025 , 1 , 2 , 10 , 0 ); // 2025-1-1 10:00:00
75- LocalDateTime start = LocalDateTime .of (2025 , 1 , 2 , 12 , 0 ); // 2025-1-2 12:00:00
76- LocalDateTime end = LocalDateTime .of (2025 , 1 , 2 , 14 , 0 ); // 2025-1-2 14:00:00
74+ LocalDateTime createdAt = LocalDateTime .of (2025 , 1 , 2 , 10 , 0 ); // 2025-01-02 10:00:00
75+ LocalDateTime start = LocalDateTime .of (2025 , 1 , 2 , 12 , 0 ); // 2025-01-02 12:00:00
76+ LocalDateTime end = LocalDateTime .of (2025 , 1 , 2 , 14 , 0 ); // 2025-01-02 14:00:00
7777
7878 // when
7979 // then
0 commit comments