update to pass lint tests

This commit is contained in:
Thomas Nolte 2018-09-24 15:48:01 -04:00
parent 871c0fe88c
commit a524744b1c
1 changed files with 13 additions and 13 deletions

View File

@ -69,8 +69,8 @@ describe('fs.promises.chown', function(){
afterEach(util.setup); afterEach(util.setup);
it('should be a function', function(){ it('should be a function', function(){
var fs= util.fs(); var fs= util.fs();
expect(fs.promises.chown).to.be.a('function'); expect(fs.promises.chown).to.be.a('function');
}); });
it('should allow updating uid and gid for a file', function(done) { it('should allow updating uid and gid for a file', function(done) {
@ -91,22 +91,22 @@ describe('fs.promises.chown', function(){
if(err) throw err; if(err) throw err;
return fs.promises.chown('/file', 500, 500) return fs.promises.chown('/file', 500, 500)
.then(()=>{ .then(()=>{
fs.stat('/file', function(err, stats){ fs.stat('/file', function(err, stats){
if(err) throw err; if(err) throw err;
expect(stats.uid).to.equal(500); expect(stats.uid).to.equal(500);
expect(stats.gid).to.equal(500); expect(stats.gid).to.equal(500);
done(); done();
});
})
.catch((err)=>{
throw(err);
}); });
})
.catch((err)=>{
throw(err)
});
}); });
}); });
}) });
}); });
}); });
}); });