Skip to content

Commit

Permalink
Don't assert callCount on fs.watch
Browse files Browse the repository at this point in the history
  • Loading branch information
es128 committed Jan 30, 2015
1 parent 222e51d commit 81fb9d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test.js
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,7 @@ function runTests (options) {
spy.should.have.been.calledWith('add', 'unlink.txt');
spy.should.have.been.calledWith('change', 'change.txt');
spy.should.have.been.calledWith('unlink', 'unlink.txt');
spy.callCount.should.equal(4);
if (!osXFsWatch) spy.callCount.should.equal(4);
done();
});
});
Expand Down

0 comments on commit 81fb9d3

Please sign in to comment.