Skip to content

Commit

Permalink
http: revert flaky test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
OrKoN committed Mar 17, 2020
1 parent 845d4bb commit 01c2228
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-http-highwatermark.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 01c2228

Please sign in to comment.