Skip to content

Commit abf6b3f

Browse files
authored
refactor : 댓글 작성자 이름에서 닉네임 으로 변경 (#385)
* 댓글 작성자 이름에서 닉네임 으로 변경 * 댓글 작성자 이름에서 닉네임 으로 변경
1 parent 4650210 commit abf6b3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

back/src/test/java/com/back/domain/post/comment/entity/PostCommentTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ void getAuthorName_success() {
231231
String authorName = comment.getAuthorName();
232232

233233
// then
234-
assertThat(authorName).isEqualTo("Author Name");
234+
assertThat(authorName).isEqualTo("Test Nickname");
235235
}
236236
}
237237

@@ -315,4 +315,4 @@ private PostComment createDefaultComment(Member member) {
315315
.role(member.getRole().name())
316316
.build();
317317
}
318-
}
318+
}

0 commit comments

Comments
 (0)