diff options
Diffstat (limited to 'test/parallel/test-http-max-headers-count.js')
-rw-r--r-- | test/parallel/test-http-max-headers-count.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-http-max-headers-count.js b/test/parallel/test-http-max-headers-count.js index 342a6a0412..05f4f774c2 100644 --- a/test/parallel/test-http-max-headers-count.js +++ b/test/parallel/test-http-max-headers-count.js @@ -30,7 +30,7 @@ let responses = 0; const headers = {}; const N = 2000; for (let i = 0; i < N; ++i) { - headers['key' + i] = i; + headers[`key${i}`] = i; } const maxAndExpected = [ // for server |