summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/parallel/test-fs-readfilesync-pipe-large.js16
1 files changed, 10 insertions, 6 deletions
diff --git a/test/parallel/test-fs-readfilesync-pipe-large.js b/test/parallel/test-fs-readfilesync-pipe-large.js
index f8ad5a6331..0f180f0f86 100644
--- a/test/parallel/test-fs-readfilesync-pipe-large.js
+++ b/test/parallel/test-fs-readfilesync-pipe-large.js
@@ -26,12 +26,16 @@ 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, { maxBuffer: 1000000 }, function(err, stdout, stderr) {
- assert.ifError(err);
- assert.strictEqual(stdout, dataExpected);
- assert.strictEqual(stderr, '');
- console.log('ok');
-});
+exec(
+ cmd,
+ { maxBuffer: 1000000 },
+ common.mustCall(function(err, stdout, stderr) {
+ assert.ifError(err);
+ assert.strictEqual(stdout, dataExpected);
+ assert.strictEqual(stderr, '');
+ console.log('ok');
+ })
+);
process.on('exit', function() {
fs.unlinkSync(filename);