summaryrefslogtreecommitdiff
path: root/test/parallel/test-https-agent-disable-session-reuse.js
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2016-12-30 10:09:13 -0500
committercjihrig <cjihrig@gmail.com>2017-01-06 14:08:47 -0500
commite5499b32cfcde144ee41500356d45d990cd9df0e (patch)
tree5241a5db3f80fee2d6a8e2b255f49157d5733d56 /test/parallel/test-https-agent-disable-session-reuse.js
parent75ebd19d8dff5c65f94f7cf0a847b63d952ca864 (diff)
downloadandroid-node-v8-e5499b32cfcde144ee41500356d45d990cd9df0e.tar.gz
android-node-v8-e5499b32cfcde144ee41500356d45d990cd9df0e.tar.bz2
android-node-v8-e5499b32cfcde144ee41500356d45d990cd9df0e.zip
test: s/assert.notEqual()/assert.notStrictEqual()/
PR-URL: https://github.com/nodejs/node/pull/10541 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Italo A. Casas <me@italoacasas.com>
Diffstat (limited to 'test/parallel/test-https-agent-disable-session-reuse.js')
-rw-r--r--test/parallel/test-https-agent-disable-session-reuse.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-https-agent-disable-session-reuse.js b/test/parallel/test-https-agent-disable-session-reuse.js
index dc9878d4a1..2f59118e36 100644
--- a/test/parallel/test-https-agent-disable-session-reuse.js
+++ b/test/parallel/test-https-agent-disable-session-reuse.js
@@ -54,6 +54,6 @@ const server = https.createServer(options, function(req, res) {
process.on('exit', function() {
assert.equal(serverRequests, TOTAL_REQS);
assert.equal(clientSessions.length, TOTAL_REQS);
- assert.notEqual(clientSessions[0].toString('hex'),
- clientSessions[1].toString('hex'));
+ assert.notStrictEqual(clientSessions[0].toString('hex'),
+ clientSessions[1].toString('hex'));
});