Skip to content

Commit

Permalink
style(wedding): make line is lower than 100 chars
Browse files Browse the repository at this point in the history
  • Loading branch information
junghoon-vans committed Feb 27, 2023
1 parent 11918c2 commit e5baf90
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,10 @@ void registerWedding() throws Exception {
.weddingDay(LocalDate.parse("2033-03-25")).build();

// when
ResultActions result = mockMvc.perform(post("/api/v1/wedding").contentType(MediaType.APPLICATION_JSON)
.header(HttpHeaders.AUTHORIZATION, ACCESS_TOKEN_PREFIX + "ACCESS_TOKEN")
.content(objectMapper.writeValueAsString(weddingDayDto)));
ResultActions result = mockMvc.perform(
post("/api/v1/wedding").contentType(MediaType.APPLICATION_JSON)
.header(HttpHeaders.AUTHORIZATION, ACCESS_TOKEN_PREFIX + "ACCESS_TOKEN")
.content(objectMapper.writeValueAsString(weddingDayDto)));

// then
result.andExpect(status().isCreated()).andDo(document("wedding/register-wedding",
Expand Down

0 comments on commit e5baf90

Please sign in to comment.