Commit 0a265df9 authored by Ilya Potuzhnov's avatar Ilya Potuzhnov Committed by Michael Dawson
Browse files

test: Modernize test-tls-peer-certificate.js

Modernize `test/parallel/test-tls-peer-certificate.js` according to the
following rules:
* `var` --> `const`/`let`
* `assert.equal` --> `assert.strictEqual`
* `assert.ok(a === b)` --> `assert.strictEqual(a, b)`

PR-URL: https://github.com/nodejs/node/pull/10014


Reviewed-By: default avatarColin Ihrig <cjihrig@gmail.com>
Reviewed-By: default avatarJames M Snell <jasnell@gmail.com>
Reviewed-by: default avatarMichael Dawson <michael_dawson@ca.ibm.com>
parent fc310551
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment