aboutsummaryrefslogtreecommitdiff
path: root/benchmark/run.js
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/run.js')
-rw-r--r--benchmark/run.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/run.js b/benchmark/run.js
index cb4f8cc004..3b4944caf5 100644
--- a/benchmark/run.js
+++ b/benchmark/run.js
@@ -50,7 +50,7 @@ if (format === 'csv') {
// Construct configuration string, " A=a, B=b, ..."
let conf = '';
for (const key of Object.keys(data.conf)) {
- conf += ' ' + key + '=' + JSON.stringify(data.conf[key]);
+ conf += ` ${key}=${JSON.stringify(data.conf[key])}`;
}
// delete first space of the configuration
conf = conf.slice(1);