summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-remove-header-stays-removed.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-http-remove-header-stays-removed.js')
-rw-r--r--test/parallel/test-http-remove-header-stays-removed.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-http-remove-header-stays-removed.js b/test/parallel/test-http-remove-header-stays-removed.js
index 904b821010..844814bf03 100644
--- a/test/parallel/test-http-remove-header-stays-removed.js
+++ b/test/parallel/test-http-remove-header-stays-removed.js
@@ -30,7 +30,7 @@ process.on('exit', function() {
server.listen(common.PORT, function() {
http.get({ port: common.PORT }, function(res) {
assert.equal(200, res.statusCode);
- assert.deepEqual(res.headers, { date : 'coffee o clock' });
+ assert.deepStrictEqual(res.headers, { date : 'coffee o clock' });
res.setEncoding('ascii');
res.on('data', function(chunk) {