From 4887cc725f5fff032f1dc4fd42af415437873b55 Mon Sep 17 00:00:00 2001 From: Aqeel Parpia Date: Fri, 8 Feb 2019 05:36:55 -0500 Subject: [PATCH] issue 734 --- tests/spec/fs.xattr.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/spec/fs.xattr.spec.js b/tests/spec/fs.xattr.spec.js index c536492..509d71d 100644 --- a/tests/spec/fs.xattr.spec.js +++ b/tests/spec/fs.xattr.spec.js @@ -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(); }); });