aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-http-header-overflow.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-http-header-overflow.js')
-rw-r--r--test/parallel/test-http-header-overflow.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-http-header-overflow.js b/test/parallel/test-http-header-overflow.js
index 167dada928..a539a69c03 100644
--- a/test/parallel/test-http-header-overflow.js
+++ b/test/parallel/test-http-header-overflow.js
@@ -7,7 +7,7 @@ const { expectsError, mustCall } = require('../common');
const CRLF = '\r\n';
const DUMMY_HEADER_NAME = 'Cookie: ';
const DUMMY_HEADER_VALUE = 'a'.repeat(
- // plus one is to make it 1 byte too big
+ // Plus one is to make it 1 byte too big
maxHeaderSize - DUMMY_HEADER_NAME.length - (2 * CRLF.length) + 1
);
const PAYLOAD_GET = 'GET /blah HTTP/1.1';