summaryrefslogtreecommitdiff
path: root/test/parallel/test-crypto-binary-default.js
diff options
context:
space:
mode:
authorAlex Aubuchon <alex@aub.dev>2019-05-28 14:28:59 -0700
committerAli Ijaz Sheikh <ofrobots@google.com>2019-06-05 11:37:35 -0700
commitf5e6ac2bd9cfd55d156fdcaee4f73b2822f46a53 (patch)
treee59420e3464089964c689bf35a03c2a9bb84f71a /test/parallel/test-crypto-binary-default.js
parent56d338305d24c29a8898486bd30752665cedb913 (diff)
downloadandroid-node-v8-f5e6ac2bd9cfd55d156fdcaee4f73b2822f46a53.tar.gz
android-node-v8-f5e6ac2bd9cfd55d156fdcaee4f73b2822f46a53.tar.bz2
android-node-v8-f5e6ac2bd9cfd55d156fdcaee4f73b2822f46a53.zip
test: move dsa keypairs to fixtures/keys/
PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'test/parallel/test-crypto-binary-default.js')
-rw-r--r--test/parallel/test-crypto-binary-default.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-crypto-binary-default.js b/test/parallel/test-crypto-binary-default.js
index e4c66969f9..712a9c7e39 100644
--- a/test/parallel/test-crypto-binary-default.js
+++ b/test/parallel/test-crypto-binary-default.js
@@ -667,8 +667,8 @@ common.expectsError(
// Test DSA signing and verification
//
{
- const privateKey = fixtures.readSync('test_dsa_privkey.pem');
- const publicKey = fixtures.readSync('test_dsa_pubkey.pem');
+ const privateKey = fixtures.readKey('dsa_private.pem');
+ const publicKey = fixtures.readKey('dsa_public.pem');
const input = 'I AM THE WALRUS';