ESLint fix

This commit is contained in:
Phil Hughes 2017-04-13 20:03:08 +01:00
parent c922b846fe
commit 6e21728d95
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ describe('List model', () => {
});
it('increase page number if current issue count is more than the page size', () => {
for (let i = 0; i < 30; i+=1) {
for (let i = 0; i < 30; i += 1) {
list.issues.push(new ListIssue({
title: 'Testing',
iid: _.random(10000) + i,