Fix lint issues in exec.spec.js

This commit is contained in:
David Humphrey 2018-07-26 17:44:27 -04:00
parent 51c81edb5b
commit a8c3fa85db
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ describe('FileSystemShell.exec', function() {
fs.writeFile('/cmd.js', cmdString, function(error) {
if(error) throw error;
shell.exec('/cmd.js', ['/test', 'hello world'], function(error, result) {
shell.exec('/cmd.js', ['/test', 'hello world'], function(error) {
if(error) throw error;
fs.readFile('/test', 'utf8', function(error, data) {