Skip to content

Commit

Permalink
test: refactor test-tls-client-getephemeralkeyinfo
Browse files Browse the repository at this point in the history
change var to const and add mustCall

PR-URL: #9954
Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
harishtejwani authored and Trott committed Dec 24, 2016
1 parent 7e7062c commit 0ff69b4
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions test/parallel/test-tls-client-getephemeralkeyinfo.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
'use strict';
var common = require('../common');
var assert = require('assert');
const common = require('../common');
const assert = require('assert');

if (!common.hasCrypto) {
common.skip('missing crypto');
process.exit();
}
var tls = require('tls');
const tls = require('tls');

var fs = require('fs');
var key = fs.readFileSync(common.fixturesDir + '/keys/agent2-key.pem');
var cert = fs.readFileSync(common.fixturesDir + '/keys/agent2-cert.pem');
const fs = require('fs');
const key = fs.readFileSync(common.fixturesDir + '/keys/agent2-key.pem');
const cert = fs.readFileSync(common.fixturesDir + '/keys/agent2-cert.pem');

var ntests = 0;
var nsuccess = 0;
Expand Down Expand Up @@ -45,12 +45,12 @@ function test(size, type, name, next) {
conn.end();
});

server.on('close', function(err) {
server.on('close', common.mustCall(function(err) {
assert(!err);
if (next) next();
});
}));

server.listen(0, '127.0.0.1', function() {
server.listen(0, '127.0.0.1', common.mustCall(function() {
var client = tls.connect({
port: this.address().port,
rejectUnauthorized: false
Expand All @@ -62,7 +62,7 @@ function test(size, type, name, next) {
nsuccess++;
server.close();
});
});
}));
}

function testNOT_PFS() {
Expand Down

0 comments on commit 0ff69b4

Please sign in to comment.