Skip to content

Commit 01c2228

Browse files
committed
http: revert flaky test fix
1 parent 845d4bb commit 01c2228

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-http-highwatermark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ let requestReceived = 0;
1414
const server = http.createServer(function(req, res) {
1515
const id = ++requestReceived;
1616
const enoughToDrain = req.connection.writableHighWaterMark;
17-
const body = 'x'.repeat(enoughToDrain * 200);
17+
const body = 'x'.repeat(enoughToDrain * 100);
1818

1919
if (id === 1) {
2020
// Case of needParse = false

0 commit comments

Comments
 (0)