Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
WesCossick committed Mar 29, 2019
1 parent dadf19f commit 4b9d358
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/pizza-ordering.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@ function runTest(customArguments, stdoutIncludes, stderrIncludes, done) {

// Form spawn array
let spawnArray = [entryFile, ...customArguments.split(' ')];
spawnArray = spawnArray.filter((element) => {
return element !== '';
});
spawnArray = spawnArray.filter(element => element !== '');


// Spawn
Expand Down

0 comments on commit 4b9d358

Please sign in to comment.