We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea73250 commit 6c80075Copy full SHA for 6c80075
src/test/java/org/dfbf/soundlink/domain/chatRoom/ChatRoomServiceTest.java
@@ -127,8 +127,8 @@ void testSaveRequestToRedis_SUCCESS() {
127
when(blockListRepository.existsByUser_UserIdAndBlockedUser_UserId(responseUserId, requestUserId)).thenReturn(false); // 차단된 사용자 없음
128
129
// 알림 서비스 mock
130
- when(alertService.send(eq(responseUserId), eq("alarm"), any(Alert.class)))
131
- .thenReturn(new ResponseResult(ErrorCode.SUCCESS)); // 알림 전송 mock
+// when(alertService.send(eq(responseUserId), eq("alarm"), any(Alert.class)))
+// .thenReturn(new ResponseResult(ErrorCode.SUCCESS)); // 알림 전송 mock
132
133
// Redis 관련 mock 설정
134
ValueOperations<String, Object> valueOps = mock(ValueOperations.class); // ValueOperations 객체 생성
0 commit comments