Skip to content

Commit

Permalink
refactor: 기존의 수정된 로직 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
SJ70 committed Aug 14, 2024
1 parent f27542b commit 89e64bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ void findOrSaveByOAuthInfo_Save() {
void update() {
String changedName = "changedName";
String changedDescription = "changedDescription";
MemberUpdateDto dto = new MemberUpdateDto(changedName, changedDescription);
MemberUpdateDto dto = new MemberUpdateDto(null, changedName, changedDescription);

memberService.update(member1, dto);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ void update() {
String changedTitle = "changedTitle";
String changedDescription = "changedDescription";
VideoStatus changedVideoStatus = VideoStatus.PRIVATE;
VideoUpdateDto dto = new VideoUpdateDto(changedTitle, changedDescription, changedVideoStatus);
VideoUpdateDto dto = new VideoUpdateDto(null, changedTitle, changedDescription, changedVideoStatus);

videoService.update(publicVideo, dto);

Expand Down

0 comments on commit 89e64bd

Please sign in to comment.