File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ()),
You can’t perform that action at this time.
0 commit comments