Skip to content

Commit

Permalink
[fix]swagger-tag
Browse files Browse the repository at this point in the history
  • Loading branch information
dojinyou committed Nov 20, 2023
1 parent 084708a commit cc25391
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@ class BannerMvcTest : AbstractMockMvcTest() {
.andExpect(status().isOk)
.andDo(
document(
identifier = "baennr-update",
identifier = "banner-update",
resourceDetails = ResourceSnippetParametersBuilder()
.tag("baennr")
.tag("banner")
.description("배너 수정")
.pathParameters(
ResourceDocumentation.parameterWithName("baennrId").description("배너 식별자")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ class StoreControllerMvcTest : AbstractMockMvcTest() {
MockMvcRestDocumentationWrapper.document(
identifier = "menu-create",
resourceDetails = ResourceSnippetParametersBuilder()
.tag("Store")
.tag("store")
.description("가게의 메뉴 생성")
.pathParameters(
ResourceDocumentation.parameterWithName("storeId").description("가게 식별자")
Expand Down Expand Up @@ -300,7 +300,7 @@ class StoreControllerMvcTest : AbstractMockMvcTest() {
MockMvcRestDocumentationWrapper.document(
identifier = "store-findAllMenu",
resourceDetails = ResourceSnippetParametersBuilder()
.tag("Store")
.tag("store")
.description("가게의 메뉴 전체 조회")
.pathParameters(
ResourceDocumentation.parameterWithName("storeId").description("가게 식별자")
Expand Down

0 comments on commit cc25391

Please sign in to comment.