Skip to content

Commit

Permalink
fix: 탈퇴 회원 nickname 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
char-yb committed Oct 21, 2024
1 parent f2af10d commit f383837
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ private CommentFindOneResponse convertToCommentFindOneResponse(
String writerNickname =
comment.getWriter() != null
? comment.getWriter().getProfile().getNickname()
: "탈퇴한 회원입니다.";
: "탈퇴한 회원";
String writerProfileImageUrl =
comment.getWriter() != null
? comment.getWriter().getProfile().getProfileImageUrl()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import static org.junit.jupiter.api.Assertions.*;
import static org.mockito.Mockito.*;
import static org.springframework.transaction.annotation.Isolation.*;

import com.depromeet.stonebed.FixtureMonkeySetUp;
import com.depromeet.stonebed.domain.comment.dao.CommentRepository;
Expand Down

0 comments on commit f383837

Please sign in to comment.