Skip to content

Commit

Permalink
test: use fixtures.readKey in https-timeout-server
Browse files Browse the repository at this point in the history
Replace `common.fixturesDir` usage in test-https-timeout-server.js with
`fixtures.readKey()`.
  • Loading branch information
nicolasnoble authored and Trott committed Oct 21, 2017
1 parent 8e268c7 commit 6c2e23f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/parallel/test-https-timeout-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,16 @@ const common = require('../common');
if (!common.hasCrypto)
common.skip('missing crypto');

const fixtures = require('../common/fixtures');

const assert = require('assert');
const https = require('https');

const net = require('net');
const fs = require('fs');

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'),
handshakeTimeout: 50
};

Expand Down

0 comments on commit 6c2e23f

Please sign in to comment.