We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63c1666 commit b9398f9Copy full SHA for b9398f9
ontime-back/src/test/java/devkor/ontime_back/controller/ScheduleControllerTest.java
@@ -212,7 +212,7 @@ void getPreparation_success() throws Exception {
212
when(scheduleService.getPreparations(userId, scheduleId)).thenReturn(mockPreparations);
213
214
// when & then
215
- mockMvc.perform(get("/schedules/{scheduleId}/preparation", scheduleId)
+ mockMvc.perform(get("/schedules/{scheduleId}/preparations", scheduleId)
216
.header("Authorization", "Bearer test-token")
217
.contentType(MediaType.APPLICATION_JSON))
218
.andExpect(status().isOk()) // HTTP 200 확인
0 commit comments