From 1b94d025bc9ab277aaefc47f5fcdb78c03301c04 Mon Sep 17 00:00:00 2001 From: Shuhei Kagawa Date: Sun, 28 Apr 2019 01:47:57 +0200 Subject: [PATCH] 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 Reviewed-By: Yongsheng Zhang Reviewed-By: Luigi Pinca --- test/parallel/test-http-slow-headers-keepalive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parallel/test-http-slow-headers-keepalive.js b/test/parallel/test-http-slow-headers-keepalive.js index 4e62b59168326e..4958d534ef77d4 100644 --- a/test/parallel/test-http-slow-headers-keepalive.js +++ b/test/parallel/test-http-slow-headers-keepalive.js @@ -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;