From 34e5580a6603571487f9ce1dad73f3256f8a628f Mon Sep 17 00:00:00 2001 From: Priyanka Dhiman Date: Fri, 8 Feb 2019 11:32:27 -0500 Subject: [PATCH] changes made as requested --- tests/spec/fs.unlink.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/spec/fs.unlink.spec.js b/tests/spec/fs.unlink.spec.js index e4b6935..07fa5b8 100644 --- a/tests/spec/fs.unlink.spec.js +++ b/tests/spec/fs.unlink.spec.js @@ -6,7 +6,7 @@ describe('fs.unlink', function() { afterEach(util.cleanup); it('should be a function', function() { - let fs = util.fs(); + const fs = util.fs(); expect(fs.unlink).to.be.a('function'); }); @@ -115,7 +115,7 @@ describe('fs.promises.unlink', function () { }); it('should return an error if trying to delete a file that does not exist', function() { - let fsPromises = util.fs().promises; + const fsPromises = util.fs().promises; return fsPromises.unlink('/myFile') .catch(error => {