Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Removed /keys/ for key file path
Removed `/keys/` from the key file path string as the readKey function handles that for you.
  • Loading branch information
camantigue authored Oct 20, 2017
commit c21f0b23da3788633cf7aede0a49e29d5c11ba6f
4 changes: 2 additions & 2 deletions test/parallel/test-tls-delayed-attach.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ const sent = 'hello world';
let received = '';

const options = {
key: fixtures.readKey('/keys/agent1-key.pem'),
cert: fixtures.readKey('/keys/agent1-cert.pem')
key: fixtures.readKey('agent1-key.pem'),
cert: fixtures.readKey('agent1-cert.pem')
};

const server = net.createServer(function(c) {
Expand Down