Fix PopupNotificationsManagerTest

This commit is contained in:
Carl Vuorinen 2019-04-30 08:34:00 +03:00
parent c5b5aac774
commit b668cccd7f

View file

@ -83,11 +83,11 @@ public class PopupNotificationsManagerTest {
List<Notification> notifications = new ArrayList<>();
LoginIncentiveData notificationData = new LoginIncentiveData();
notificationData.message = testTitle;
notificationData.setMessage(testTitle);
Notification notification = new Notification();
notification.setType("LOGIN_INCENTIVE");
notification.data = notificationData;
notification.setData(notificationData);
notifications.add(notification);
@ -107,11 +107,11 @@ public class PopupNotificationsManagerTest {
List<Notification> notifications = new ArrayList<>();
LoginIncentiveData notificationData = new LoginIncentiveData();
notificationData.message = testTitle;
notificationData.setMessage(testTitle);
Notification notification = new Notification();
notification.setType("LOGIN_INCENTIVE");
notification.data = notificationData;
notification.setData(notificationData);
notifications.add(notification);
notifications.add(notification);