Skip to content

Commit

Permalink
Removes lint errors from tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
hackergrrl committed Apr 21, 2016
1 parent 9f27ac2 commit 7544d2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/repo-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ module.exports = function (repo) {

it('bad repo init 1', (done) => {
function run () {
new Repo()
return new Repo()
}
expect(run).to.throw(Error)
done()
})

it('bad repo init 2', (done) => {
function run () {
new Repo('', {})
return new Repo('', {})
}
expect(run).to.throw(Error)
done()
Expand Down

0 comments on commit 7544d2a

Please sign in to comment.