Skip to content

Commit 04177b0

Browse files
authored
Merge pull request #34 from WebKit/fix-report-JSON
const variable isn't const
2 parents 935f262 + 1710e9f commit 04177b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

JetStreamDriver.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ class Driver {
485485

486486
resultsJSON()
487487
{
488-
const results = {};
488+
let results = {};
489489
for (const benchmark of this.benchmarks) {
490490
const subResults = {}
491491
const subScores = benchmark.subScores();

0 commit comments

Comments
 (0)