diff options
| author | Bert Belder <bertbelder@gmail.com> | 2021-06-23 15:46:15 +0000 |
|---|---|---|
| committer | Bert Belder <bertbelder@gmail.com> | 2021-06-23 19:36:04 +0000 |
| commit | 5a250b9e5529fa6af797a9ce5c3e612be49ea538 (patch) | |
| tree | 8b3fde535f2e7e9487b5a0ebfd44b9aebdf1b847 /tools/wpt.ts | |
| parent | abd7a8a9cdc407169993c4282d45ec9f717c74bd (diff) | |
tests: fix bug in WPT test harness (#10920)
Diffstat (limited to 'tools/wpt.ts')
| -rwxr-xr-x | tools/wpt.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/wpt.ts b/tools/wpt.ts index 4a4d8cb58..0c56e9efd 100755 --- a/tools/wpt.ts +++ b/tools/wpt.ts @@ -197,7 +197,7 @@ async function run() { } if (wptreport) { - const report = await generateWptreport(results, startTime, endTime); + const report = await generateWptReport(results, startTime, endTime); await Deno.writeTextFile(wptreport, JSON.stringify(report)); } @@ -205,7 +205,7 @@ async function run() { Deno.exit(code); } -async function generateWptreport( +async function generateWptReport( results: { test: TestToRun; result: TestResult }[], startTime: number, endTime: number, |
