Skip to content

Commit

Permalink
fix: #139 test code 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
tnals2384 committed Sep 10, 2024
1 parent 5748bb6 commit d1671c4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ public void getAnswerCommentInfosTest() throws Exception {
.andExpect(jsonPath("$.code").value("COMMON200"))
.andExpect(jsonPath("$.message").value("요청에 성공하였습니다."))
.andExpect(jsonPath("$.result.answerCommentInfos[0].answerCommentId").value(1L))
.andExpect(jsonPath("$.result.answerCommentInfos[0].writer").value("루시"))
.andExpect(jsonPath("$.result.answerCommentInfos[0].writerId").value(1L))
.andExpect(jsonPath("$.result.answerCommentInfos[0].content").value("댓글 1"))
.andExpect(jsonPath("$.result.answerCommentInfos[0].heartCount").value(3L))
.andExpect(jsonPath("$.result.answerCommentInfos[0].heartCount").value(3))
.andExpect(jsonPath("$.result.answerCommentInfos[0].createdAt").value("2022-11-01T12:02:00"));

}
Expand Down

0 comments on commit d1671c4

Please sign in to comment.