diff options
author | Ruben Bridgewater <ruben@bridgewater.de> | 2019-03-22 03:44:26 +0100 |
---|---|---|
committer | Ruben Bridgewater <ruben@bridgewater.de> | 2019-03-27 17:20:06 +0100 |
commit | b08a867d6016ccf04783a0f91fdbcc3460daf234 (patch) | |
tree | 5df4b30220cde5ae5eac9ed956c9badac6ba08af /test/parallel/test-https-client-renegotiation-limit.js | |
parent | fd992e6e36bb4b01a6ceb71cfeb3bae640b492a6 (diff) | |
download | node-new-b08a867d6016ccf04783a0f91fdbcc3460daf234.tar.gz |
benchmark,doc,lib: capitalize more comments
PR-URL: https://github.com/nodejs/node/pull/26849
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Diffstat (limited to 'test/parallel/test-https-client-renegotiation-limit.js')
-rw-r--r-- | test/parallel/test-https-client-renegotiation-limit.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-https-client-renegotiation-limit.js b/test/parallel/test-https-client-renegotiation-limit.js index 3527c48f4b..4d3dda3d75 100644 --- a/test/parallel/test-https-client-renegotiation-limit.js +++ b/test/parallel/test-https-client-renegotiation-limit.js @@ -35,7 +35,7 @@ const fixtures = require('../common/fixtures'); // Renegotiation as a protocol feature was dropped after TLS1.2. tls.DEFAULT_MAX_VERSION = 'TLSv1.2'; -// renegotiation limits to test +// Renegotiation limits to test const LIMITS = [0, 1, 2, 3, 5, 10, 16]; { @@ -96,7 +96,7 @@ function test(next) { spam(); - // simulate renegotiation attack + // Simulate renegotiation attack function spam() { client.renegotiate({}, (err) => { assert.ifError(err); |