From 01c2228ccf49d3d79cd8652efe9847a328bb1943 Mon Sep 17 00:00:00 2001 From: Alex R Date: Sun, 12 Jan 2020 19:22:09 +0100 Subject: [PATCH] http: revert flaky test fix --- test/parallel/test-http-highwatermark.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parallel/test-http-highwatermark.js b/test/parallel/test-http-highwatermark.js index b2cfa8ee2636c5..79d9c46a558b60 100644 --- a/test/parallel/test-http-highwatermark.js +++ b/test/parallel/test-http-highwatermark.js @@ -14,7 +14,7 @@ let requestReceived = 0; const server = http.createServer(function(req, res) { const id = ++requestReceived; const enoughToDrain = req.connection.writableHighWaterMark; - const body = 'x'.repeat(enoughToDrain * 200); + const body = 'x'.repeat(enoughToDrain * 100); if (id === 1) { // Case of needParse = false