Skip to content

Commit

Permalink
Merge pull request #106 from depromeet/feature/#93
Browse files Browse the repository at this point in the history
[fix][#93] 테스트 온보딩 상태 조회 api 이름 겹치는 부분 수정
  • Loading branch information
lee-june-young authored Aug 30, 2024
2 parents 0046222 + 14c6ad0 commit 41d33f1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class 온보딩상태_조회 {
mockMvc.perform(restDocsFactory.createRequest(DEFAULT_URL + "/onboard-status", null, HttpMethod.GET,
objectMapper))
.andExpect(status().isOk())
.andDo(restDocsFactory.getSuccessResource("[온보딩상태_조회] 성공", "온보딩상태 조회", "user", null, response));
.andDo(restDocsFactory.getSuccessResource("[온보딩상태_조회] 성공-온보딩 완료 상태", "온보딩상태 조회", "user", null, response));

}

Expand All @@ -70,7 +70,7 @@ class 온보딩상태_조회 {
mockMvc.perform(restDocsFactory.createRequest(DEFAULT_URL + "/onboard-status", null, HttpMethod.GET,
objectMapper))
.andExpect(status().isOk())
.andDo(restDocsFactory.getSuccessResource("[온보딩상태_조회] 성공", "온보딩상태 조회", "user", null, response));
.andDo(restDocsFactory.getSuccessResource("[온보딩상태_조회] 성공-온보딩 미완료 상태", "온보딩상태 조회", "user", null, response));

}
}
Expand Down

0 comments on commit 41d33f1

Please sign in to comment.