diff --git a/backend/src/test/java/hanglog/category/presentation/CategoryControllerTest.java b/backend/src/test/java/hanglog/category/presentation/CategoryControllerTest.java index baecff762..c8158070c 100644 --- a/backend/src/test/java/hanglog/category/presentation/CategoryControllerTest.java +++ b/backend/src/test/java/hanglog/category/presentation/CategoryControllerTest.java @@ -58,11 +58,7 @@ void getExpenseCategories() throws Exception { .type(JsonFieldType.NUMBER) .description("카테고리 ID") .attributes(field("constraint", "양의 정수")), - fieldWithPath("[].engName") - .type(JsonFieldType.STRING) - .description("카테고리 영문명") - .attributes(field("constraint", "50자 이하의 문자열")), - fieldWithPath("[].korName") + fieldWithPath("[].name") .type(JsonFieldType.STRING) .description("카테고리 한글명") .attributes(field("constraint", "50자 이하의 문자열"))