Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
merlynomsft committed Oct 25, 2024
1 parent 360f224 commit f37f61a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions make.js
Original file line number Diff line number Diff line change
Expand Up @@ -703,9 +703,9 @@ CLI.test = async function(/** @type {{ suite: string; node: string; task: string
}

var hasErrors = false;
results.forEach(({ task, result }) => {
results.forEach(({ taskName, result }) => {
hasErrors = true;
console.log(`Task: ${task}, Result: ${result}`);
console.log(`Task: ${taskName}, Result: ${result}`);
});

if (hasErrors) {
Expand Down

0 comments on commit f37f61a

Please sign in to comment.