0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 07:27:22 +01:00

test: replace var by const test-tls-zero-clear-in

PR-URL: https://github.com/nodejs/node/pull/8621
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com>
This commit is contained in:
Sébastien Barbieri 2016-09-17 12:49:54 +02:00 committed by Ilkka Myller
parent ebbd5cb0df
commit 5f4bc59800

View File

@ -1,19 +1,19 @@
'use strict';
var common = require('../common');
const common = require('../common');
if (!common.hasCrypto) {
common.skip('missing crypto');
return;
}
var tls = require('tls');
const tls = require('tls');
var fs = require('fs');
var path = require('path');
const fs = require('fs');
const path = require('path');
var cert = fs.readFileSync(path.join(common.fixturesDir, 'test_cert.pem'));
var key = fs.readFileSync(path.join(common.fixturesDir, 'test_key.pem'));
const cert = fs.readFileSync(path.join(common.fixturesDir, 'test_cert.pem'));
const key = fs.readFileSync(path.join(common.fixturesDir, 'test_key.pem'));
var server = tls.createServer({
const server = tls.createServer({
cert: cert,
key: key
}, function(c) {
@ -23,7 +23,7 @@ var server = tls.createServer({
server.close();
}, 20);
}).listen(0, common.mustCall(function() {
var conn = tls.connect({
const conn = tls.connect({
cert: cert,
key: key,
rejectUnauthorized: false,