test: update common.fixturesDir usage with fixtures.fixturesDir#15874
test: update common.fixturesDir usage with fixtures.fixturesDir#15874alvaro450 wants to merge 1 commit intonodejs:masterfrom
Conversation
|
Hi, @alvaro450! Welcome and thanks for this! Can you update this to use |
| key: fs.readFileSync(`${common.fixturesDir}/keys/agent2-key.pem`), | ||
| cert: fs.readFileSync(`${common.fixturesDir}/keys/agent2-cert.pem`), | ||
| key: fs.readFileSync(`${fixtures.fixturesDir}/keys/agent2-key.pem`), | ||
| cert: fs.readFileSync(`${fixtures.fixturesDir}/keys/agent2-cert.pem`), |
There was a problem hiding this comment.
This can be:
key: fixtures.readKey('agent2-key.pem'),
cert: fixtures.readKey('agent2-cert.pem')There was a problem hiding this comment.
I will fix this while landing.
| key: fs.readFileSync(`${common.fixturesDir}/keys/agent2-key.pem`), | ||
| cert: fs.readFileSync(`${common.fixturesDir}/keys/agent2-cert.pem`), | ||
| key: fs.readFileSync(`${fixtures.fixturesDir}/keys/agent2-key.pem`), | ||
| cert: fs.readFileSync(`${fixtures.fixturesDir}/keys/agent2-cert.pem`), |
There was a problem hiding this comment.
I will fix this while landing.
PR-URL: #15874 Reviewed-By: Ruben Bridgewater <[email protected]>
|
Landed in b096533 Thanks for the PR, and congratulations on becoming a Node.js Contributor 🎉 ! |
PR-URL: #15874 Reviewed-By: Ruben Bridgewater <[email protected]>
PR-URL: nodejs/node#15874 Reviewed-By: Ruben Bridgewater <[email protected]>
PR-URL: #15874 Reviewed-By: Ruben Bridgewater <[email protected]>
PR-URL: #15874 Reviewed-By: Ruben Bridgewater <[email protected]>
PR-URL: #15874 Reviewed-By: Ruben Bridgewater <[email protected]>
PR-URL: nodejs/node#15874 Reviewed-By: Ruben Bridgewater <[email protected]>
Checklist
make -j4 test(UNIX), orvcbuild test(Windows) passesAffected core subsystem(s)