Skip to content

Commit

Permalink
test: added fixtures module directly to test/parallel/test-tls-client…
Browse files Browse the repository at this point in the history
…-getephemeralkeyinfo.js
  • Loading branch information
cougarkhan committed Oct 6, 2017
1 parent 88e9c4c commit 1ae12d6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/parallel/test-tls-client-getephemeralkeyinfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ const assert = require('assert');
const tls = require('tls');
const fs = require('fs');

const key = fs.readFileSync(`${fixtures.fixturesDir}/keys/agent2-key.pem`);
const cert = fs.readFileSync(`${fixtures.fixturesDir}/keys/agent2-cert.pem`);

const key = fixtures.readKey('agent2-key.pem');
const cert = fixtures.readKey('agent2-cert.pem');

let ntests = 0;
let nsuccess = 0;
Expand Down

0 comments on commit 1ae12d6

Please sign in to comment.