Skip to content

Commit 1982135

Browse files
committed
test[jwt]: 테스트 코드 수정
1 parent fd89cb7 commit 1982135

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/src/test/java/com/ai/lawyer/domain/member/controller/MemberControllerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ void resetPassword_Success_WithLoginIdInBody() throws Exception {
517517
.andExpect(jsonPath("$.success").value(true));
518518

519519
verify(memberService).resetPassword("[email protected]", "newPassword123", true);
520-
verify(memberService).logout("[email protected]", any());
520+
verify(memberService).logout(eq("[email protected]"), any(HttpServletResponse.class));
521521
}
522522

523523
@Test

0 commit comments

Comments
 (0)