Skip to content

Commit

Permalink
fix: completedAt Type 체크
Browse files Browse the repository at this point in the history
  • Loading branch information
char-yb committed Sep 28, 2024
1 parent 5f6b406 commit 7923932
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,8 @@ class MissionRecordServiceTest extends FixtureMonkeySetUp {
then(response.imageUrl()).isEqualTo(missionRecord.getImageUrl());
then(response.status()).isEqualTo(MissionRecordStatus.COMPLETED);
then(response.recordId()).isEqualTo(missionRecord.getId());
then(response.completedAt()).isEqualTo(missionRecord.getUpdatedAt().toLocalDate());
then(response.completedAt())
.isEqualTo(missionRecord.getUpdatedAt().toLocalDate().toString());
then(response.content()).isEqualTo(missionRecord.getContent());

verify(memberUtil).getCurrentMember();
Expand Down

0 comments on commit 7923932

Please sign in to comment.