Skip to content

Commit

Permalink
[feature/Inhabas#241] 프로젝트 게시판 구현 완료 및 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
skytin1004 committed Mar 14, 2024
1 parent a0f1c83 commit 69e45a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public ResponseEntity<ClubHistoryDto> findClubHistory(@PathVariable Long clubHis
value = {
@ApiResponse(responseCode = "201", description = "'Location' 헤더에 생성된 리소스의 URI 가 포함됩니다."),
@ApiResponse(
responseCode = "400 ",
responseCode = "400",
description = "입력값이 없거나, 타입이 유효하지 않습니다.",
content =
@Content(
Expand Down Expand Up @@ -117,7 +117,7 @@ public ResponseEntity<Void> writeClubHistory(
value = {
@ApiResponse(responseCode = "204"),
@ApiResponse(
responseCode = "400 ",
responseCode = "400",
description = "입력값이 없거나, 타입이 유효하지 않습니다.",
content =
@Content(
Expand Down Expand Up @@ -152,7 +152,7 @@ public ResponseEntity<Void> updateClubHistory(
value = {
@ApiResponse(responseCode = "204"),
@ApiResponse(
responseCode = "400 ",
responseCode = "400",
description = "입력값이 없거나, 타입이 유효하지 않습니다.",
content =
@Content(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ private String jsonOf(Object response) throws JsonProcessingException {
@Test
void getBoardCount_Success() throws Exception {
// given
BoardCountDto boardCountDto = new BoardCountDto("알파테스터", 10);
BoardCountDto boardCountDto = new BoardCountDto("알파 테스터", 10);
List<BoardCountDto> dtoList = List.of(boardCountDto);
given(baseBoardRepository.countRowsGroupByMenuName(any())).willReturn(dtoList);

Expand Down

0 comments on commit 69e45a2

Please sign in to comment.