Fix lint issues in ls-depth-bug.js
This commit is contained in:
parent
d41885e9d0
commit
454d5bc801
|
@ -46,7 +46,7 @@ describe('sh.ls and deep directory trees', function() {
|
||||||
}
|
}
|
||||||
|
|
||||||
async.eachSeries(paths, writeFile, function(err) {
|
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) {
|
sh.ls('/', {recursive: true}, function(err, listing) {
|
||||||
expect(err).not.to.exist;
|
expect(err).not.to.exist;
|
||||||
|
|
Loading…
Reference in New Issue