test: add missing line breaks to keep-alive header of slow headers test

PR-URL: https://github.com/nodejs/node/pull/27442
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
Shuhei Kagawa 2019-04-28 01:47:57 +02:00 committed by Rich Trott
parent ea46db6642
commit e4e6a33e6a

View File

@ -8,7 +8,7 @@ const { finished } = require('stream');
const headers =
'GET / HTTP/1.1\r\n' +
'Host: localhost\r\n' +
'Connection: keep-alive' +
'Connection: keep-alive\r\n' +
'Agent: node\r\n';
let sendCharEvery = 1000;