Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixup! test: slightly refactor test-child-process-execsync
  • Loading branch information
lundibundi committed Dec 26, 2018
commit fa2f241f042731657bb4e962d4fc1a74fffdb8cf
4 changes: 2 additions & 2 deletions test/sequential/test-child-process-execsync.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ const args = [
assert.strictEqual(err.status, 1);
assert.strictEqual(typeof err.pid, 'number');
spawnSyncKeys
.filter(key => key !== 'pid')
.forEach(key => {
.filter((key) => key !== 'pid')
.forEach((key) => {
assert.deepStrictEqual(err[key], spawnSyncResult[key]);
});
return true;
Expand Down