Skip to content

Commit

Permalink
refactor: 코드리뷰에 따른 line break 및 this키워드 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
juno-junho committed Sep 11, 2023
1 parent 83d8099 commit 77c5932
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/main/java/com/ray/pominowner/store/domain/Store.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public class Store extends BaseTimeEntity {

public Store(final RequiredStoreInfo requiredStoreInfo) {
validateRequiredInfo(requiredStoreInfo);

this.requiredStoreInfo = requiredStoreInfo;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ void successRegisterStore() throws Exception {
.willReturn(1L);

// when, then
this.mvc.perform(post("/api/v1/stores")
mvc.perform(post("/api/v1/stores")
.with(csrf())
.contentType(MediaType.APPLICATION_JSON)
.content(mapper.writeValueAsString(storeRegisterRequest)))
Expand Down

0 comments on commit 77c5932

Please sign in to comment.