aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-parse-cert-string.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2016-04-19 15:37:45 -0700
committerRich Trott <rtrott@gmail.com>2016-04-22 14:38:09 -0700
commita7335bd1f048f6592f609eec0c87c007e98d754c (patch)
tree1f888003dea7c3fb67366ac1a94f418eb7acb168 /test/parallel/test-tls-parse-cert-string.js
parent5eb4ec090d70a848e2ae98bd526634bf9d1bf08c (diff)
downloadandroid-node-v8-a7335bd1f048f6592f609eec0c87c007e98d754c.tar.gz
android-node-v8-a7335bd1f048f6592f609eec0c87c007e98d754c.tar.bz2
android-node-v8-a7335bd1f048f6592f609eec0c87c007e98d754c.zip
test,benchmark: use deepStrictEqual()
In preparation for a lint rule that will enforce assert.deepStrictEqual() over assert.deepEqual(), change tests and benchmarks accordingly. For tests and benchmarks that are testing or benchmarking assert.deepEqual() itself, apply a comment to ignore the upcoming rule. PR-URL: https://github.com/nodejs/node/pull/6213 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'test/parallel/test-tls-parse-cert-string.js')
-rw-r--r--test/parallel/test-tls-parse-cert-string.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-tls-parse-cert-string.js b/test/parallel/test-tls-parse-cert-string.js
index 6607d6974c..2a3c449481 100644
--- a/test/parallel/test-tls-parse-cert-string.js
+++ b/test/parallel/test-tls-parse-cert-string.js
@@ -7,7 +7,7 @@ const tls = require('tls');
const singles = 'C=US\nST=CA\nL=SF\nO=Node.js Foundation\nOU=Node.js\n' +
'CN=ca1\nemailAddress=ry@clouds.org';
const singlesOut = tls.parseCertString(singles);
-assert.deepEqual(singlesOut, {
+assert.deepStrictEqual(singlesOut, {
C: 'US',
ST: 'CA',
L: 'SF',
@@ -20,7 +20,7 @@ assert.deepEqual(singlesOut, {
const doubles = 'OU=Domain Control Validated\nOU=PositiveSSL Wildcard\n' +
'CN=*.nodejs.org';
const doublesOut = tls.parseCertString(doubles);
-assert.deepEqual(doublesOut, {
+assert.deepStrictEqual(doublesOut, {
OU: [ 'Domain Control Validated', 'PositiveSSL Wildcard' ],
CN: '*.nodejs.org'
});