Skip to content

Commit

Permalink
test: 단위, e2e 테스트 작성
Browse files Browse the repository at this point in the history
  • Loading branch information
kimyu0218 committed Nov 21, 2024
1 parent adce1a5 commit 5564d24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ public interface MissionRetryMessageRepository extends RedisRepository {

void update(String memberId, String deviceToken);

Set<String> keys(LocalDate sendDate);
Set<String> keys(LocalDate pushDate);
}
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public ResponseEntity<Void> deleteMember(
@PatchMapping("/device-token")
public ResponseEntity<Void> updateDeviceToken(
@LoginMemberId final Long memberId,
final UpdateDeviceTokenRequest request
@RequestBody @Valid final UpdateDeviceTokenRequest request
) {
memberService.updateDeviceToken(request.toServiceDto(memberId));

Expand Down

0 comments on commit 5564d24

Please sign in to comment.