Skip to content

Commit

Permalink
test: 알림 테스트 계정 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
rawfishthelgh committed Jan 22, 2024
1 parent 085478e commit df6960a
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 df6960a

Please sign in to comment.