Skip to content

Commit 49ee2c4

Browse files
committed
test(search): /api/v1 prefix 변경
1 parent b4f6b42 commit 49ee2c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/com/somemore/recruitboard/controller/RecruitBoardSearchApiControllerTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ void getAllBySearch() throws Exception {
4545

4646
// when
4747
// then
48-
mockMvc.perform(get("/api_v1/recruit-boards/search")
48+
mockMvc.perform(get("/api/v1/recruit-boards/search")
4949
.param("keyword", "volunteer")
5050
.param("category", ADMINISTRATIVE_SUPPORT.name())
5151
.accept(MediaType.APPLICATION_JSON))
@@ -68,7 +68,7 @@ void getNearby() throws Exception {
6868

6969
// when
7070
// then
71-
mockMvc.perform(get("/api_v1/recruit-boards/nearby")
71+
mockMvc.perform(get("/api/v1/recruit-boards/nearby")
7272
.param("latitude", "37.5665")
7373
.param("longitude", "126.9780")
7474
.param("radius", "10")

0 commit comments

Comments
 (0)