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 c603ad5 commit b787d02Copy full SHA for b787d02
src/test/java/com/somemore/center/controller/CenterQueryApiControllerTest.java
@@ -84,7 +84,7 @@ void getCenterProfile_NotFound() throws Exception {
84
.andDo(print())
85
.andExpect(status().isBadRequest())
86
.andExpect(jsonPath("$.status").value("400"))
87
- .andExpect(jsonPath("$.detail").value("존재하지 않는 기관 ID 입니다."));
+ .andExpect(jsonPath("$.detail").value("존재하지 않는 기관 입니다."));
88
89
verify(centerQueryUseCase, times(1)).getCenterProfileByCenterId(nonExistentCenterId);
90
}
0 commit comments