diff options
author | Sam Roberts <vieuxtech@gmail.com> | 2019-06-05 18:19:24 -0400 |
---|---|---|
committer | Refael Ackermann <refack@gmail.com> | 2019-06-05 19:01:13 -0400 |
commit | 965ffc4cb9a55d26192a95485b57afe4573990b0 (patch) | |
tree | 9352dc45708cad51baddc9114170bc9b0919d495 /test/sequential/test-tls-session-timeout.js | |
parent | 81a9c7201f66855cdca534dae1a3f53f822a009b (diff) | |
download | node-new-965ffc4cb9a55d26192a95485b57afe4573990b0.tar.gz |
Revert "test: move all test keys/certs under `test/fixtures/keys/`"
PR-URL: https://github.com/nodejs/node/pull/28083
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Refael Ackermann (רפאל פלחי) <refack@gmail.com>
Diffstat (limited to 'test/sequential/test-tls-session-timeout.js')
-rw-r--r-- | test/sequential/test-tls-session-timeout.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sequential/test-tls-session-timeout.js b/test/sequential/test-tls-session-timeout.js index 86a29eed46..4e430b7135 100644 --- a/test/sequential/test-tls-session-timeout.js +++ b/test/sequential/test-tls-session-timeout.js @@ -51,8 +51,8 @@ function doTest() { const SESSION_TIMEOUT = 1; - const key = fixtures.readKey('rsa_private.pem'); - const cert = fixtures.readKey('rsa_cert.crt'); + const key = fixtures.readSync('agent.key'); + const cert = fixtures.readSync('agent.crt'); const options = { key: key, cert: cert, |