Skip to content

Commit

Permalink
๐Ÿ› fix docs uri
Browse files Browse the repository at this point in the history
  • Loading branch information
HaiSeong committed Oct 23, 2024
1 parent 2e8ae35 commit a202c50
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,8 @@ void updateRecipe() {
new IngredientCreateRequest("WaterMelon", Requirement.OPTIONAL, null)
);
List<RecipeStepRequest> recipeStepRequests = List.of(
new RecipeStepRequest("์Šคํ…1 ์ด๋ฏธ์ง€.jpg", "์Šคํ…1 ์„ค๋ช…", 1, "00:10:00"),
new RecipeStepRequest(null, "์Šคํ…2 ์„ค๋ช…", 2, "00:20:00")
new RecipeStepRequest("๋ณ€๊ฒฝ๋œ ์Šคํ… ์ด๋ฏธ์ง€ 1.jpg", "๋ณ€๊ฒฝ๋œ ์Šคํ… ์„ค๋ช… 1", 1, "00:10:00"),
new RecipeStepRequest("๋ณ€๊ฒฝ๋œ ์Šคํ… ์ด๋ฏธ์ง€ 2.jpg", "๋ณ€๊ฒฝ๋œ ์Šคํ… ์„ค๋ช… 2", 2, "00:20:00")
);
RecipeUpdateRequest recipeUpdateRequest = new RecipeUpdateRequest(
"๋ณ€๊ฒฝ๋œ ๋ ˆ์‹œํ”ผ ์ œ๋ชฉ",
Expand Down Expand Up @@ -352,7 +352,7 @@ void updateRecipe() {
)))
.contentType(ContentType.JSON)
.body(recipeUpdateRequest)
.when().put("/recipes/" + recipeId)
.when().put("/recipes/{recipeId}", recipeId)
.then().log().all()
.statusCode(200);
}
Expand Down

0 comments on commit a202c50

Please sign in to comment.