summaryrefslogtreecommitdiff
path: root/test/parallel/test-webcrypto-encrypt-decrypt-rsa.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2021-03-26 08:51:08 -0700
committerRich Trott <rtrott@gmail.com>2021-04-01 23:14:29 -0700
commit330f25ef822dac6ed8a0afb3422bd920726eb43d (patch)
treebbf90ca3116946aba033d510364e0dbf209ae5b6 /test/parallel/test-webcrypto-encrypt-decrypt-rsa.js
parentf0bf37317604061dc60ebf858d6ad4dfc313dcdc (diff)
downloadnode-new-330f25ef822dac6ed8a0afb3422bd920726eb43d.tar.gz
test: prepare for consistent comma-dangle lint rule
Make changes so that tests will pass when the comma-dangle settings applied to the rest of the code base are also applied to tests. PR-URL: https://github.com/nodejs/node/pull/37930 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is>
Diffstat (limited to 'test/parallel/test-webcrypto-encrypt-decrypt-rsa.js')
-rw-r--r--test/parallel/test-webcrypto-encrypt-decrypt-rsa.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-webcrypto-encrypt-decrypt-rsa.js b/test/parallel/test-webcrypto-encrypt-decrypt-rsa.js
index c75e25bf10..151eebd36c 100644
--- a/test/parallel/test-webcrypto-encrypt-decrypt-rsa.js
+++ b/test/parallel/test-webcrypto-encrypt-decrypt-rsa.js
@@ -23,7 +23,7 @@ async function importVectorKey(
subtle.importKey(
'spki', publicKeyBuffer, { name, hash }, false, publicUsages),
subtle.importKey(
- 'pkcs8', privateKeyBuffer, { name, hash }, false, privateUsages)
+ 'pkcs8', privateKeyBuffer, { name, hash }, false, privateUsages),
]);
return { publicKey, privateKey };