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: fix linter error
  • Loading branch information
HarshithaKP committed Mar 9, 2020
commit a6f14d96e09e39fc585c9ec2ce6006693871b40d
2 changes: 1 addition & 1 deletion test/parallel/test-child-process-pipe-dataflow.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ const MB = KB * KB;

wc.stdout.on('data', common.mustCall((data) => {
// Grep always adds one extra byte at the end.
assert.strictEqual(data.toString().trim(), (MB+1).toString());
assert.strictEqual(data.toString().trim(), (MB + 1).toString());
}));
}