diff --git a/test/simple/test-http-header-obstext.js b/test/simple/test-http-header-obstext.js index cd50b20bf7..72ffdfcf0e 100644 --- a/test/simple/test-http-header-obstext.js +++ b/test/simple/test-http-header-obstext.js @@ -8,9 +8,9 @@ var server = http.createServer(common.mustCall(function(req, res) { server.listen(common.PORT, function() { http.get({ port: common.PORT, - headers: {'Test': 'Düsseldorf'} + headers: {'Connection': 'close', 'Test': 'Düsseldorf'} }, common.mustCall(function(res) { assert.equal(res.statusCode, 200); server.close(); })); -}); \ No newline at end of file +});