Skip to content

Commit

Permalink
[style] : 줄바꿈 취소
Browse files Browse the repository at this point in the history
  • Loading branch information
hyun2371 committed Nov 23, 2024
1 parent 9436afc commit dcb9a19
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,7 @@ void getChatInquiryById() {
ChatInquiryDetailResponse response = chatInquiryService.getChatInquiryById(1L, inquirer);

//then
assertThat(response.chatPartner().memberId())
.isEqualTo(answerer.getId());
assertThat(response.chatPartner().memberId()).isEqualTo(answerer.getId());
}

@DisplayName("[회원이 속한 채팅 요청 목록을 조회할 수 있다.]")
Expand Down Expand Up @@ -257,8 +256,7 @@ void rejectChat() {
RejectChatResponse response = chatInquiryService.rejectChat(chatInquiryId, answerer);

//then
assertThat(response.inquiryStatus())
.isEqualTo(InquiryStatus.REJECTED.getLabel());
assertThat(response.inquiryStatus()).isEqualTo(InquiryStatus.REJECTED.getLabel());
}

@DisplayName("[답변자가 채팅 요청을 거절할 때 채팅 거절 알림이 발행된다.]")
Expand Down

0 comments on commit dcb9a19

Please sign in to comment.