summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-multi-line-headers.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-http-multi-line-headers.js')
-rw-r--r--test/parallel/test-http-multi-line-headers.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-http-multi-line-headers.js b/test/parallel/test-http-multi-line-headers.js
index 2096f533a1..f7998c2548 100644
--- a/test/parallel/test-http-multi-line-headers.js
+++ b/test/parallel/test-http-multi-line-headers.js
@@ -27,8 +27,8 @@ server.listen(0, common.mustCall(function() {
host: '127.0.0.1',
port: this.address().port
}, common.mustCall(function(res) {
- assert.equal(res.headers['content-type'],
- 'text/plain; x-unix-mode=0600; name="hello.txt"');
+ assert.strictEqual(res.headers['content-type'],
+ 'text/plain; x-unix-mode=0600; name="hello.txt"');
res.destroy();
}));
}));