From 58b4c6928241cdbc7ffdb57e1b1f1d1a24e90832 Mon Sep 17 00:00:00 2001 From: Ryan Mathis Date: Fri, 19 Oct 2018 11:10:08 -0700 Subject: [PATCH] SHIBUI-914 fixed test --- .../component/notification-list.component.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/app/notification/component/notification-list.component.spec.ts b/ui/src/app/notification/component/notification-list.component.spec.ts index 2f31d8f4d..a9c0db081 100644 --- a/ui/src/app/notification/component/notification-list.component.spec.ts +++ b/ui/src/app/notification/component/notification-list.component.spec.ts @@ -49,13 +49,13 @@ describe('Notification List Component', () => { it('should return -1 if the first parameter was created first', () => { const a = new Notification(); const b = new Notification(); - b.createdAt = Date.now() + 1; + b.createdAt = Date.now() + 100; expect(instance.sorter(a, b)).toBe(-1); }); it('should return -1 if the first parameter was created first', () => { const a = new Notification(); const b = new Notification(); - a.createdAt = Date.now() + 1; + a.createdAt = Date.now() + 100; expect(instance.sorter(a, b)).toBe(1); }); it('should return -1 if the first parameter was created first', () => {