diff options
Diffstat (limited to 'test/parallel/test-http-response-no-headers.js')
-rw-r--r-- | test/parallel/test-http-response-no-headers.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-http-response-no-headers.js b/test/parallel/test-http-response-no-headers.js index 3f44b4ef5f..e10571af4c 100644 --- a/test/parallel/test-http-response-no-headers.js +++ b/test/parallel/test-http-response-no-headers.js @@ -32,7 +32,7 @@ function test(httpVersion, callback) { }); res.on('end', common.mustCall(function() { - assert.equal(body, expected[httpVersion]); + assert.strictEqual(body, expected[httpVersion]); server.close(); if (callback) process.nextTick(callback); })); |