Skip to content

Commit

Permalink
test: use fixtures in test-https-localaddress.js
Browse files Browse the repository at this point in the history
PR-URL: #15811
Reviewed-By: Ryan Graham <r.m.graham@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
  • Loading branch information
CharlesWall authored and MylesBorins committed Nov 28, 2017
1 parent c252d87 commit c4db4e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/parallel/test-https-localaddress.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ if (!common.hasCrypto)
if (!common.hasMultiLocalhost())
common.skip('platform-specific test.');

const fs = require('fs');
const fixtures = require('../common/fixtures');
const assert = require('assert');
const https = require('https');

const options = {
key: fs.readFileSync(`${common.fixturesDir}/keys/agent1-key.pem`),
cert: fs.readFileSync(`${common.fixturesDir}/keys/agent1-cert.pem`)
key: fixtures.readKey('agent1-key.pem'),
cert: fixtures.readKey('agent1-cert.pem')
};

const server = https.createServer(options, function(req, res) {
Expand Down

0 comments on commit c4db4e4

Please sign in to comment.