Fix lint errors

This commit is contained in:
typicode
2018-11-14 10:48:49 +01:00
parent 165b6475d3
commit 59ef199d16
5 changed files with 25 additions and 19 deletions

View File

@ -110,8 +110,8 @@ describe('Server with custom foreign key', () => {
.del('/posts/1')
.expect({})
.expect(200)
assert.equal(db.posts.length, 1)
assert.equal(db.comments.length, 1)
assert.strictEqual(db.posts.length, 1)
assert.strictEqual(db.comments.length, 1)
})
})
})