From 0e00af661a5b6a110b31cd4f5329b23e74269689 Mon Sep 17 00:00:00 2001 From: David Humphrey Date: Fri, 27 Jul 2018 11:02:42 -0400 Subject: [PATCH] Fix lint issues in fs.appendFile.spec.js --- tests/spec/fs.appendFile.spec.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/spec/fs.appendFile.spec.js b/tests/spec/fs.appendFile.spec.js index 3949a4e..7fb3aa9 100644 --- a/tests/spec/fs.appendFile.spec.js +++ b/tests/spec/fs.appendFile.spec.js @@ -69,10 +69,8 @@ describe('fs.appendFile', function() { it('should append a binary file', function(done) { var fs = util.fs(); - // String and utf8 binary encoded versions of the same thing: - var contents = 'This is a file.'; + // String and utf8 binary encoded versions of the same thing: 'This is a file.' var binary = new Buffer([84, 104, 105, 115, 32, 105, 115, 32, 97, 32, 102, 105, 108, 101, 46]); - var more = ' Appended.'; var binary2 = new Buffer([32, 65, 112, 112, 101, 110, 100, 101, 100, 46]); var binary3 = new Buffer([84, 104, 105, 115, 32, 105, 115, 32, 97, 32, 102, 105, 108, 101, 46, 32, 65, 112, 112, 101, 110, 100, 101, 100, 46]);