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
test: Removed extra slashes from readKey function call
  • Loading branch information
timothywisdom committed Oct 13, 2017
commit 69622ca13b773a015bb3a29a4444ca2dfaeda2b9
4 changes: 2 additions & 2 deletions test/parallel/test-tls-client-getephemeralkeyinfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ const assert = require('assert');
const tls = require('tls');
const fs = require('fs');

const fixturesKey = fixtures.readKey('/agent2-key.pem');
const fixturesCert = fixtures.readKey('/agent2-cert.pem');
const fixturesKey = fixtures.readKey('agent2-key.pem');
const fixturesCert = fixtures.readKey('agent2-cert.pem');
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

there shouldn't be reason to change the variable names here.


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