Skip to content

Commit

Permalink
test: 이동봉사 모집자 모집중, 모집 마감 목록 조회 API 테스트 코드 수정 (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyeong-hyeok committed Apr 28, 2024
1 parent 16db9dc commit 15a7bf7
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,10 +174,10 @@ void setUp() {
List<PostRecruitingGetResponse> response = new ArrayList<>();
LocalDate startDate = LocalDate.of(2023, 10, 2);
LocalDate endDate = LocalDate.of(2023, 11, 7);
response.add(new PostRecruitingGetResponse(1L, PostStatus.RECRUITING, "image1", "포포1", startDate, endDate,
"서울시 성북구", "서울시 중랑구"));
response.add(new PostRecruitingGetResponse(2L, PostStatus.EXPIRED, "image2", "포포2", startDate, endDate,
"서울시 성북구", "서울시 중랑구"));
response.add(new PostRecruitingGetResponse(1L, PostStatus.RECRUITING.getKey(), "image1", "잔디", "서울시 성북구", "서울시 중랑구",
startDate, endDate, "13:00", DogSize.MEDIUM.getKey(), true));
response.add(new PostRecruitingGetResponse(2L, PostStatus.RECRUITING.getKey(), "image1", "잔디", "서울시 성북구", "서울시 중랑구",
startDate, endDate, "13:00", DogSize.MEDIUM.getKey(), true));


//when
Expand Down

0 comments on commit 15a7bf7

Please sign in to comment.