refs #5858 fix: test Notification getList

This commit is contained in:
Javier Segarra 2024-02-12 10:27:28 +01:00
parent 88dfbd6da0
commit e5b7395e5c
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ describe('NotificationSubscription getList()', () => {
const notifications = await models.Notification.find({});
const totalAvailable = notifications.length - active.length;
expect(active.length).toEqual(2);
expect(active.length).toEqual(3);
expect(available.length).toEqual(totalAvailable);
});
});