Skip to content

Commit b9398f9

Browse files
committed
mod::테스트코드 수정
1 parent 63c1666 commit b9398f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ontime-back/src/test/java/devkor/ontime_back/controller/ScheduleControllerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ void getPreparation_success() throws Exception {
212212
when(scheduleService.getPreparations(userId, scheduleId)).thenReturn(mockPreparations);
213213

214214
// when & then
215-
mockMvc.perform(get("/schedules/{scheduleId}/preparation", scheduleId)
215+
mockMvc.perform(get("/schedules/{scheduleId}/preparations", scheduleId)
216216
.header("Authorization", "Bearer test-token")
217217
.contentType(MediaType.APPLICATION_JSON))
218218
.andExpect(status().isOk()) // HTTP 200 확인

0 commit comments

Comments
 (0)