issue 734

This commit is contained in:
Aqeel Parpia 2019-02-08 05:36:55 -05:00
parent 3471848b39
commit 4887cc725f
1 changed files with 2 additions and 2 deletions

View File

@ -173,7 +173,7 @@ describe('fs.xattr', function() {
it('should set and get an extended attribute of a path', function(done) {
const fs = util.fs();
let name = 'test';
const name = 'test';
fs.writeFile('/testfile', '', function (error) {
if (error) throw error;
@ -201,7 +201,7 @@ describe('fs.xattr', function() {
fs.removexattr('/testfile', 'testenoattr', function (error) {
expect(error).to.exist;
expect(error.code).to.equal('ENOATTR');
expect(error.code).to.equal('ENOATTR');gi
done();
});
});