From 1c81dd8d8355c0302dacefeaacf4719eee7f3cbf Mon Sep 17 00:00:00 2001 From: Adri Van Houdt Date: Sat, 17 Sep 2016 10:24:07 +0200 Subject: [PATCH] test: cleanup test-child-process-buffering.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/8578 Reviewed-By: Michaƫl Zasso Reviewed-By: Anna Henningsen Reviewed-By: Luigi Pinca Reviewed-By: James M Snell Reviewed-By: Ilkka Myller --- test/parallel/test-child-process-buffering.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test/parallel/test-child-process-buffering.js b/test/parallel/test-child-process-buffering.js index 29ea8b5c45..1c04a6f813 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]); });