Browse Source

test: fix redeclared vars in sequential tests

PR-URL: https://github.com/nodejs/node/pull/4999
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Roman Klauke <romaaan.git@gmail.com>
v4.x
Rich Trott 9 years ago
committed by Myles Borins
parent
commit
bdcafd0aa2
  1. 2
      test/sequential/test-child-process-execsync.js
  2. 4
      test/sequential/test-require-cache-without-stat.js
  3. 4
      test/sequential/test-tcp-wrap-listen.js

2
test/sequential/test-child-process-execsync.js

@ -38,7 +38,7 @@ var msgBuf = new Buffer(msg + '\n');
cmd = `"${process.execPath}" -e "console.log(\'${msg}\');"`;
var ret = execSync(cmd);
ret = execSync(cmd);
assert.strictEqual(ret.length, msgBuf.length);
assert.deepEqual(ret, msgBuf, 'execSync result buffer should match');

4
test/sequential/test-require-cache-without-stat.js

@ -35,14 +35,14 @@ var counterBefore = counter;
// Now load the module a bunch of times with equivalent paths.
// stat should not be called.
for (var i = 0; i < 100; i++) {
for (let i = 0; i < 100; i++) {
require(common.fixturesDir + '/a');
require('../fixtures/a.js');
require('./../fixtures/a.js');
}
// Do the same with a built-in module
for (var i = 0; i < 100; i++) {
for (let i = 0; i < 100; i++) {
require('http');
}

4
test/sequential/test-tcp-wrap-listen.js

@ -38,8 +38,8 @@ server.onconnection = function(err, client) {
var req = new WriteWrap();
req.async = false;
var err = client.writeBuffer(req, buffer);
assert.equal(err, 0);
const returnCode = client.writeBuffer(req, buffer);
assert.equal(returnCode, 0);
client.pendingWrites.push(req);
console.log('client.writeQueueSize: ' + client.writeQueueSize);

Loading…
Cancel
Save