Skip to content

Commit

Permalink
fix: Test 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jihyo-j committed May 23, 2024
1 parent bd21f8c commit cdd1597
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -296,4 +296,4 @@ public void hasReactedTest() throws Exception {
.andExpect(jsonPath("$.length()").value(0));
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ public void addFcmTokenTest() throws Exception {
.andExpect(status().isOk());
}


@Test
@DisplayName("닉네임 업데이트 테스트(): 해당 회원의 닉네임을 업데이트한다.")
public void updateNicknameTest() throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,4 +183,4 @@ public void testLogout() throws Exception {
// then
.andExpect(status().isOk());
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -143,4 +143,4 @@ void createNotificationTest() throws FirebaseMessagingException {
eq("가은아! 넌 무슨색상을 좋아해?")
);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,3 @@ void FindAllNotificationTest() throws Exception{
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -189,4 +189,3 @@ public void deleteQuestionTest() throws Exception {
.andExpect(status().isNoContent());
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,4 @@ public void getReactionCountsTest() throws Exception {
.andExpect(jsonPath("$.sadCount").value(3))
.andExpect(jsonPath("$.connectCount").value(4));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -164,4 +164,4 @@ void getAuthentication() {
assertThat(((UserDetails) authentication.getPrincipal()).getUsername())
.isEqualTo(testMember.getEmail());
}
}
}

0 comments on commit cdd1597

Please sign in to comment.