Skip to content

Commit 8e1d747

Browse files
committed
docs(CheerDocumentTest): 쿼리 파리미터의 누락된 명세 추가
1 parent 401f726 commit 8e1d747

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/eatda/document/store/CheerDocumentTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ class GetCheers {
136136
.tag(Tag.CHEER_API)
137137
.summary("최신 응원 검색")
138138
.queryParameter(
139-
parameterWithName("page").description("조회 페이지 (최소 0, 기본값 0)").optional(),
140-
parameterWithName("size").description("조회 개수 (최소 1, 최대 50)").optional()
139+
parameterWithName("page").description("조회 페이지 (기본값 0, 최소 0)").optional(),
140+
parameterWithName("size").description("조회 개수 (기본값 5, 최소 1, 최대 50)").optional()
141141
);
142142

143143
RestDocsResponse responseDocument = response()
@@ -207,7 +207,7 @@ class GetCheersByStoreId {
207207
parameterWithName("storeId").description("가게 ID")
208208
)
209209
.queryParameter(
210-
parameterWithName("page").description("조회 페이지 (최소 0, 기본값 0)").optional(),
210+
parameterWithName("page").description("조회 페이지 (기본값 0, 최소 0)").optional(),
211211
parameterWithName("size").description("조회 개수 (기본값 5, 최소 1, 최대 50)").optional()
212212
);
213213

0 commit comments

Comments
 (0)