Skip to content

Commit

Permalink
issue 734
Browse files Browse the repository at this point in the history
  • Loading branch information
Aqeel Parpia authored and Aqeel Parpia committed Feb 8, 2019
1 parent 3471848 commit 4887cc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/spec/fs.xattr.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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();
});
});
Expand Down

0 comments on commit 4887cc7

Please sign in to comment.