Skip to content

Commit

Permalink
Work around util.format bug
Browse files Browse the repository at this point in the history
Work around nodejs/node#30333, introduced in node.js v12.3.0.
  • Loading branch information
cpcallen committed Nov 21, 2019
1 parent 1f3ffeb commit de7e974
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/tests/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ async function runTests(files) {
}

// Print results summary.
console.log('\n%s\n', t);
console.log('\n%s\n', String(t));
}

/**
Expand Down

0 comments on commit de7e974

Please sign in to comment.