Skip to content

Commit

Permalink
test style
Browse files Browse the repository at this point in the history
  • Loading branch information
feross committed Feb 18, 2018
1 parent 8376af6 commit 98f513c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/clone.js
Expand Up @@ -104,14 +104,15 @@ test('test github repos that use `standard`', function (t) {
if (err) {
if (err.message.indexOf('(indent)') || err.message.indexOf('(no-multi-spaces)') || err.message.indexOf('(space-unary-ops)')) {
t.comment('Attempting to fix eslint breaking changes for ' + str)
return runStandardFix(cb)
runStandardFix(cb)
} else {
t.fail(str)
cb(null)
}
} else {
t.pass(str)
cb(null)
}
cb(null)
})
}

Expand Down

0 comments on commit 98f513c

Please sign in to comment.