Browse Source

test: fix issues for space-in-parens ESLint rule

PR-URL: https://github.com/nodejs/node/pull/4753
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Evan Lucas <evanlucas@me.com>
v4.x
Roman Reiss 9 years ago
committed by Myles Borins
parent
commit
447347cd62
  1. 2
      test/parallel/test-beforeexit-event.js
  2. 2
      test/parallel/test-crypto-hmac.js
  3. 2
      test/parallel/test-http-client-timeout-agent.js
  4. 2
      test/parallel/test-process-binding.js
  5. 2
      test/pummel/test-timers.js

2
test/parallel/test-beforeexit-event.js

@ -5,7 +5,7 @@ var common = require('../common');
var revivals = 0;
var deaths = 0;
process.on('beforeExit', function() { deaths++; } );
process.on('beforeExit', function() { deaths++; });
process.once('beforeExit', tryImmediate);

2
test/parallel/test-crypto-hmac.js

@ -62,7 +62,7 @@ var wikipedia = [
for (var i = 0, l = wikipedia.length; i < l; i++) {
for (var hash in wikipedia[i]['hmac']) {
// FIPS does not support MD5.
if (common.hasFipsCrypto && hash == 'md5' )
if (common.hasFipsCrypto && hash == 'md5')
continue;
var result = crypto.createHmac(hash, wikipedia[i]['key'])
.update(wikipedia[i]['data'])

2
test/parallel/test-http-client-timeout-agent.js

@ -17,7 +17,7 @@ var options = {
var server = http.createServer(function(req, res) {
const m = /\/(.*)/.exec(req.url);
const reqid = parseInt(m[1], 10);
if ( reqid % 2 ) {
if (reqid % 2) {
// do not reply the request
} else {
res.writeHead(200, {'Content-Type': 'text/plain'});

2
test/parallel/test-process-binding.js

@ -12,7 +12,7 @@ assert.throws(
assert.doesNotThrow(function() {
process.binding('buffer');
}, function(err) {
if ( (err instanceof Error) ) {
if (err instanceof Error) {
return true;
}
}, 'unexpected error');

2
test/pummel/test-timers.js

@ -30,7 +30,7 @@ clearTimeout(id);
setInterval(function() {
interval_count += 1;
var endtime = new Date( );
var endtime = new Date();
var diff = endtime - starttime;
assert.ok(diff > 0);

Loading…
Cancel
Save