summaryrefslogtreecommitdiff
path: root/test/parallel/test-crypto.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-crypto.js')
-rw-r--r--test/parallel/test-crypto.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-crypto.js b/test/parallel/test-crypto.js
index 21e2cca5bd..8bbc1cff80 100644
--- a/test/parallel/test-crypto.js
+++ b/test/parallel/test-crypto.js
@@ -235,7 +235,7 @@ assert.throws(function() {
// Then open private_key.pem and change its header and footer.
const sha1_privateKey = fixtures.readSync('test_bad_rsa_privkey.pem',
'ascii');
- // this would inject errors onto OpenSSL's error stack
+ // This would inject errors onto OpenSSL's error stack
crypto.createSign('sha1').sign(sha1_privateKey);
}, (err) => {
// Throws crypto error, so there is an opensslErrorStack property.