summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-max-headers-count.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-http-max-headers-count.js')
-rw-r--r--test/parallel/test-http-max-headers-count.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-http-max-headers-count.js b/test/parallel/test-http-max-headers-count.js
index 9fcfe316e3..b707c62bfb 100644
--- a/test/parallel/test-http-max-headers-count.js
+++ b/test/parallel/test-http-max-headers-count.js
@@ -36,7 +36,7 @@ for (let i = 0; i < N; ++i) {
const maxAndExpected = [ // for server
[50, 50],
[1500, 102],
- [0, N + 2] // Host and Connection
+ [0, N + 2], // Host and Connection
];
let max = maxAndExpected[requests][0];
let expected = maxAndExpected[requests][1];
@@ -57,7 +57,7 @@ server.listen(0, function() {
const maxAndExpected = [ // for client
[20, 20],
[1200, 103],
- [0, N + 3] // Connection, Date and Transfer-Encoding
+ [0, N + 3], // Connection, Date and Transfer-Encoding
];
doRequest();