Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/refactor/498-FCM_서버_비동기처리_구현' in…
Browse files Browse the repository at this point in the history
…to refactor/498-FCM_서버_비동기처리_구현
  • Loading branch information
Kim0914 committed Jan 22, 2024
2 parents ec1c882 + df6960a commit 53c10f7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class TestService {
// }

public void sendWaterNotificationAsyncRampTest() {
List<PetPlant> petPlants = petPlantRepository.findAllByMemberId(6L);
List<PetPlant> petPlants = petPlantRepository.findAllByMemberId(7L);
// List<NotificationEvent> events = petPlants.stream()
// .map(plant -> NotificationEvent.builder()
// .title(plant.getNickname())
Expand All @@ -61,7 +61,7 @@ public void sendWaterNotificationAsyncRampTest() {
}

public void sendWaterNotificationAsyncTest() {
List<PetPlant> petPlants = petPlantRepository.findAllByMemberId(6L);
List<PetPlant> petPlants = petPlantRepository.findAllByMemberId(7L);
List<NotificationEvent> events = petPlants.stream()
.map(plant -> NotificationEvent.builder()
.title(plant.getNickname())
Expand Down

0 comments on commit 53c10f7

Please sign in to comment.