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
Next Next commit
test: add mustCall to test-fs-readfile-pipe
  • Loading branch information
tonyhty committed Apr 28, 2019
commit 92c2544dcef0159035117b9706fea0273e0019d1
8 changes: 4 additions & 4 deletions test/parallel/test-fs-readfile-pipe.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ const assert = require('assert');
const fs = require('fs');

if (process.argv[2] === 'child') {
fs.readFile('/dev/stdin', function(er, data) {
fs.readFile('/dev/stdin', common.mustCall(function(er, data) {
assert.ifError(er);
process.stdout.write(data);
});
}));
return;
}

Expand All @@ -47,7 +47,7 @@ const exec = require('child_process').exec;
const f = JSON.stringify(__filename);
const node = JSON.stringify(process.execPath);
const cmd = `cat ${filename} | ${node} ${f} child`;
exec(cmd, function(err, stdout, stderr) {
exec(cmd, common.mustCall(function(err, stdout, stderr) {
assert.ifError(err);
assert.strictEqual(
stdout,
Expand All @@ -58,4 +58,4 @@ exec(cmd, function(err, stdout, stderr) {
'',
`expected not to read anything from stderr but got: '${stderr}'`);
console.log('ok');
});
}));