-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use common fixtures. #15939
Use common fixtures. #15939
Conversation
key: fs.readFileSync(`${common.fixturesDir}/keys/agent1-key.pem`), | ||
cert: fs.readFileSync(`${common.fixturesDir}/keys/agent1-cert.pem`), | ||
key: fs.readFileSync(`${fixtures.fixturesDir}/keys/agent1-key.pem`), | ||
cert: fs.readFileSync(`${fixtures.fixturesDir}/keys/agent1-cert.pem`), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should use the fixtures.readKey
function instead.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For instance,
key: fixtures.readKey('agent1-key.pem'),
cert: fixtures.readKey('agent1-cert.pem')
Ping @markexperience Can you take a look at #15939 (comment) ? |
Unfortunately was roped into jury duty, so I'm mostly unavailable for next
2 weeks or so. I'll see if I can address it this weekend.
Mark W
…On Oct 13, 2017 7:46 AM, "Joyee Cheung" ***@***.***> wrote:
Ping @markexperience <https://github.com/markexperience> Can you take a
look at #15939 (comment)
<#15939 (comment)> ?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#15939 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AEchgwstTaTjCA2tLk1VssPmVXDOsjGbks5sr02ugaJpZM4Pwzlo>
.
|
I went ahead and force-pushed the small changes requested. I think this is ready to go. PTAL. |
PR-URL: nodejs#15939 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Landed in c66e555. Thanks for the contribution! 🎉 |
@markexperience It seems like the email address you used to commit is not associated with your GitHub account. You can add the email address you used to commit in the GitHub settings. |
It's the |
PR-URL: #15939 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
PR-URL: #15939 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
PR-URL: #15939 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
PR-URL: nodejs/node#15939 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
PR-URL: nodejs/node#15939 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
PR-URL: #15939 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
PR-URL: #15939 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
PR-URL: #15939 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
PR-URL: nodejs/node#15939 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Use fixtures from the fixtures module.
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes(https://github.com/nodejs/node/blob/master/CONTRIBUTING.md#commit-message-guidelines)
Affected core subsystem(s)
test - parallels