Skip to content

Commit

Permalink
Build: Fix linting problems
Browse files Browse the repository at this point in the history
  • Loading branch information
yocontra authored and phated committed Sep 27, 2016
1 parent d7edad4 commit 8325fd9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/File.js
Original file line number Diff line number Diff line change
Expand Up @@ -244,10 +244,10 @@ describe('File', function() {
var file = new File(options);
var copy = file.clone();

copy.stat.isFile().should.be.true;
copy.stat.isDirectory().should.be.false;
should(file.stat instanceof fs.Stats).be.true;
should(copy.stat instanceof fs.Stats).be.true;
copy.stat.isFile().should.equal(true);
copy.stat.isDirectory().should.equal(false);
should(file.stat instanceof fs.Stats).equal(true);
should(copy.stat instanceof fs.Stats).equal(true);

done();
});
Expand Down Expand Up @@ -611,7 +611,7 @@ describe('File', function() {
path: null
});

should.not.exist(file.path)
should.not.exist(file.path);
file.history.should.eql([]);

(function() {
Expand Down

0 comments on commit 8325fd9

Please sign in to comment.