summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--benchmark/_benchmark_progress.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/benchmark/_benchmark_progress.js b/benchmark/_benchmark_progress.js
index 0c5cc10bf8..ffb2dfdf65 100644
--- a/benchmark/_benchmark_progress.js
+++ b/benchmark/_benchmark_progress.js
@@ -65,12 +65,12 @@ class BenchmarkProgress {
this.updateProgress();
}
- completeConfig(data) {
+ completeConfig() {
this.completedConfig++;
this.updateProgress();
}
- completeRun(job) {
+ completeRun() {
this.completedRuns++;
this.updateProgress();
}
@@ -108,7 +108,7 @@ class BenchmarkProgress {
`${caption} `;
}
- updateProgress(finished) {
+ updateProgress() {
if (!process.stderr.isTTY || process.stdout.isTTY) {
return;
}