summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--benchmark/child_process/child-process-read.js2
-rw-r--r--benchmark/http/_chunky_http_client.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/benchmark/child_process/child-process-read.js b/benchmark/child_process/child-process-read.js
index b0128eb796..6fce35410e 100644
--- a/benchmark/child_process/child-process-read.js
+++ b/benchmark/child_process/child-process-read.js
@@ -19,7 +19,7 @@ function main(conf) {
const dur = +conf.dur;
const len = +conf.len;
- const msg = '"' + Array(len).join('.') + '"';
+ const msg = `"${'.'.repeat(len)}"`;
const options = { 'stdio': ['ignore', 'pipe', 'ignore'] };
const child = spawn('yes', [msg], options);
diff --git a/benchmark/http/_chunky_http_client.js b/benchmark/http/_chunky_http_client.js
index 3dbf2caece..55f914c6df 100644
--- a/benchmark/http/_chunky_http_client.js
+++ b/benchmark/http/_chunky_http_client.js
@@ -20,7 +20,7 @@ function main(conf) {
// Chose 7 because 9 showed "Connection error" / "Connection closed"
// An odd number could result in a better length dispersion.
for (var i = 7; i <= 7 * 7 * 7; i *= 7)
- headers.push(Array(i + 1).join('o'));
+ headers.push('o'.repeat(i));
function WriteHTTPHeaders(channel, has_keep_alive, extra_header_count) {
todo = [];