From cbcddee3be2daf3a7968185452ff15c1d1391206 Mon Sep 17 00:00:00 2001 From: David Humphrey Date: Fri, 27 Jul 2018 11:01:26 -0400 Subject: [PATCH] Fix lint issues in fs.chown.spec.js --- tests/spec/fs.chown.spec.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/spec/fs.chown.spec.js b/tests/spec/fs.chown.spec.js index 4dbe896..d6de220 100644 --- a/tests/spec/fs.chown.spec.js +++ b/tests/spec/fs.chown.spec.js @@ -1,4 +1,3 @@ -var Filer = require('../../src'); var util = require('../lib/test-utils.js'); var expect = require('chai').expect; @@ -12,7 +11,7 @@ describe('fs.chown, fs.fchown', function() { expect(typeof fs.fchown).to.equal('function'); }); - it('should automatically set a file\s uid and gid to 0 (i.e., root)', function(done) { + it('should automatically set a file\'s uid and gid to 0 (i.e., root)', function(done) { var fs = util.fs(); fs.open('/file', 'w', function(err, fd) {