diff --git a/test/parallel/test-child-process-buffering.js b/test/parallel/test-child-process-buffering.js index 29ea8b5c4563c9..1c04a6f8130f12 100644 --- a/test/parallel/test-child-process-buffering.js +++ b/test/parallel/test-child-process-buffering.js @@ -1,10 +1,10 @@ 'use strict'; -var common = require('../common'); -var assert = require('assert'); +const common = require('../common'); +const assert = require('assert'); function pwd(callback) { - var output = ''; - var child = common.spawnPwd(); + let output = ''; + const child = common.spawnPwd(); child.stdout.setEncoding('utf8'); child.stdout.on('data', function(s) { @@ -14,7 +14,7 @@ function pwd(callback) { child.on('exit', common.mustCall(function(c) { console.log('exit: ' + c); - assert.equal(0, c); + assert.strictEqual(0, c); })); child.on('close', common.mustCall(function() { @@ -25,6 +25,6 @@ function pwd(callback) { pwd(function(result) { console.dir(result); - assert.equal(true, result.length > 1); - assert.equal('\n', result[result.length - 1]); + assert.strictEqual(true, result.length > 1); + assert.strictEqual('\n', result[result.length - 1]); });