Skip to content

Commit

Permalink
SHIBUI-914 fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Oct 19, 2018
1 parent 1ef4c1b commit 58b4c69
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => {
Expand Down

0 comments on commit 58b4c69

Please sign in to comment.