mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-14 18:21:57 +00:00
Fix PopupNotificationsManagerTest
This commit is contained in:
parent
c5b5aac774
commit
b668cccd7f
1 changed files with 4 additions and 4 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue