Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
aearly committed Apr 5, 2016
1 parent ae24881 commit 5d2f19b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mocha_test/detect.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ describe("detect", function () {
setTimeout(function () {
expect(calls).to.eql([1, 2, 3]);
done();
}, 10)
}, 10);
});

it('detectSeries - ensure stop', function (done) {
Expand Down
2 changes: 1 addition & 1 deletion mocha_test/some.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ describe("some", function () {
setTimeout(function () {
expect(calls).to.eql([1, 2, 3]);
done();
}, 10)
}, 10);
});

it('someLimit true', function(done){
Expand Down

0 comments on commit 5d2f19b

Please sign in to comment.