summaryrefslogtreecommitdiff
path: root/test/parallel/test-crypto-authenticated.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-crypto-authenticated.js')
-rw-r--r--test/parallel/test-crypto-authenticated.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-crypto-authenticated.js b/test/parallel/test-crypto-authenticated.js
index b62ce1a5b0..4f382eae6e 100644
--- a/test/parallel/test-crypto-authenticated.js
+++ b/test/parallel/test-crypto-authenticated.js
@@ -153,7 +153,7 @@ for (const test of TEST_CASES) {
msg += decrypt.final(outputEncoding);
assert.strictEqual(msg, test.plain);
} else {
- // assert that final throws if input data could not be verified!
+ // Assert that final throws if input data could not be verified!
assert.throws(function() { decrypt.final('hex'); }, errMessages.auth);
}
}
@@ -192,7 +192,7 @@ for (const test of TEST_CASES) {
msg += decrypt.final('ascii');
assert.strictEqual(msg, test.plain);
} else {
- // assert that final throws if input data could not be verified!
+ // Assert that final throws if input data could not be verified!
assert.throws(function() { decrypt.final('ascii'); }, errMessages.auth);
}
}