Fix lint issues in fs.appendFile.spec.js

This commit is contained in:
David Humphrey 2018-07-27 11:02:42 -04:00
parent f89b616fdc
commit 0e00af661a
1 changed files with 1 additions and 3 deletions

View File

@ -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]);