Skip to content

Commit

Permalink
[Squash] Address nits
Browse files Browse the repository at this point in the history
  • Loading branch information
jasnell committed Aug 1, 2017
1 parent 716a19c commit 3fc4543
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/parallel/test-vm-syntax-error-message.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const p = child_process.spawn(process.execPath, [
'catch (e) { console.log(e.message); }'
]);

p.stderr.on('data', common.mustNotCall);
p.stderr.on('data', common.mustNotCall());

let output = '';

Expand Down
2 changes: 1 addition & 1 deletion test/parallel/test-vm-syntax-error-stderr.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const p = child_process.spawn(process.execPath, [
wrong_script
]);

p.stdout.on('data', common.mustNotCall);
p.stdout.on('data', common.mustNotCall());

let output = '';

Expand Down

0 comments on commit 3fc4543

Please sign in to comment.