Skip to content

Commit 040bcae

Browse files
committed
test (refactor) : 그냥 없애버리자
1 parent fc0fb3e commit 040bcae

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

src/test/java/com/example/solidconnection/community/comment/service/CommentServiceTest.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,6 @@ class 댓글_조회_테스트 {
7171
() -> assertThat(response.parentId()).isNull(),
7272
() -> assertThat(response.content()).isEqualTo(parentComment.getContent()),
7373
() -> assertThat(response.isOwner()).isTrue(),
74-
() -> assertThat(response.createdAt().toInstant()).isEqualTo(parentComment.getCreatedAt().toInstant()),
75-
() -> assertThat(response.updatedAt().toInstant()).isEqualTo(parentComment.getUpdatedAt().toInstant()),
7674

7775
() -> assertThat(response.postFindSiteUserResponse().id())
7876
.isEqualTo(parentComment.getSiteUser().getId()),
@@ -89,8 +87,6 @@ class 댓글_조회_테스트 {
8987
() -> assertThat(response.parentId()).isEqualTo(parentComment.getId()),
9088
() -> assertThat(response.content()).isEqualTo(childComment.getContent()),
9189
() -> assertThat(response.isOwner()).isFalse(),
92-
() -> assertThat(response.createdAt()).isEqualTo(childComment.getCreatedAt()),
93-
() -> assertThat(response.updatedAt()).isEqualTo(childComment.getUpdatedAt()),
9490

9591
() -> assertThat(response.postFindSiteUserResponse().id())
9692
.isEqualTo(childComment.getSiteUser().getId()),

0 commit comments

Comments
 (0)