Fix lint issues in ls-depth-bug.js

This commit is contained in:
David Humphrey 2018-07-27 11:07:17 -04:00
parent d41885e9d0
commit 454d5bc801
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ describe('sh.ls and deep directory trees', function() {
}
async.eachSeries(paths, writeFile, function(err) {
if(err) { console.log('error', err); throw err; }
if(err) throw err;
sh.ls('/', {recursive: true}, function(err, listing) {
expect(err).not.to.exist;