summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-should-keep-alive.js
diff options
context:
space:
mode:
authorGibson Fahnestock <gib@uk.ibm.com>2017-01-08 15:36:25 +0000
committerGibson Fahnestock <gib@uk.ibm.com>2017-01-11 14:19:26 +0000
commit3d2aef3979cf7ac986908dbb9879216caec4a3ff (patch)
tree0566cf3150e4b9bcce3359814b3927c562bdbc42 /test/parallel/test-http-should-keep-alive.js
parent81fef918d5a8a9aa297b78ade5e58d6caa3176e6 (diff)
downloadandroid-node-v8-3d2aef3979cf7ac986908dbb9879216caec4a3ff.tar.gz
android-node-v8-3d2aef3979cf7ac986908dbb9879216caec4a3ff.tar.bz2
android-node-v8-3d2aef3979cf7ac986908dbb9879216caec4a3ff.zip
test: s/assert.equal/assert.strictEqual/
Use assert.strictEqual instead of assert.equal in tests, manually convert types where necessary. PR-URL: https://github.com/nodejs/node/pull/10698 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
Diffstat (limited to 'test/parallel/test-http-should-keep-alive.js')
-rw-r--r--test/parallel/test-http-should-keep-alive.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/parallel/test-http-should-keep-alive.js b/test/parallel/test-http-should-keep-alive.js
index 77a3c3922a..190c8c8d88 100644
--- a/test/parallel/test-http-should-keep-alive.js
+++ b/test/parallel/test-http-should-keep-alive.js
@@ -30,8 +30,8 @@ const server = net.createServer(function(socket) {
}).listen(0, function() {
function makeRequest() {
const req = http.get({port: server.address().port}, function(res) {
- assert.equal(req.shouldKeepAlive, SHOULD_KEEP_ALIVE[responses],
- SERVER_RESPONSES[responses] + ' should ' +
+ assert.strictEqual(req.shouldKeepAlive, SHOULD_KEEP_ALIVE[responses],
+ SERVER_RESPONSES[responses] + ' should ' +
(SHOULD_KEEP_ALIVE[responses] ? '' : 'not ') +
'Keep-Alive');
++responses;
@@ -48,6 +48,6 @@ const server = net.createServer(function(socket) {
});
process.on('exit', function() {
- assert.equal(requests, SERVER_RESPONSES.length);
- assert.equal(responses, SHOULD_KEEP_ALIVE.length);
+ assert.strictEqual(requests, SERVER_RESPONSES.length);
+ assert.strictEqual(responses, SHOULD_KEEP_ALIVE.length);
});