File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change 33import com .somemore .IntegrationTestSupport ;
44import com .somemore .community .domain .CommunityBoard ;
55import com .somemore .community .domain .CommunityComment ;
6- import com .somemore .community .dto .request .CommunityBoardCreateRequestDto ;
76import com .somemore .community .repository .board .CommunityBoardRepository ;
87import com .somemore .community .repository .comment .CommunityCommentRepository ;
98import org .junit .jupiter .api .BeforeEach ;
Original file line number Diff line number Diff line change @@ -64,8 +64,6 @@ void createCommunityCommentWithDto() {
6464 .parentCommentId (null )
6565 .build ();
6666
67- UUID writerId = UUID .randomUUID ();
68-
6967 //when
7068 Long commentId = createCommunityCommentService .createCommunityComment (dto , writerId );
7169
@@ -90,7 +88,6 @@ void createCommunityCommentRelyWithDto() {
9088 .parentCommentId (null )
9189 .build ();
9290
93- UUID writerId = UUID .randomUUID ();
9491 Long commentId = createCommunityCommentService .createCommunityComment (commentDto , writerId );
9592
9693 CommunityCommentCreateRequestDto replyDto = CommunityCommentCreateRequestDto .builder ()
You can’t perform that action at this time.
0 commit comments