From de7e974e218d94a92027320f5ce372229abcf897 Mon Sep 17 00:00:00 2001 From: Christopher Allen Date: Fri, 15 Nov 2019 17:23:50 +0000 Subject: [PATCH] Work around util.format bug Work around https://github.com/nodejs/node/issues/30333, introduced in node.js v12.3.0. --- server/tests/run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/tests/run.js b/server/tests/run.js index 6ae4811e..1e7f0ccd 100644 --- a/server/tests/run.js +++ b/server/tests/run.js @@ -94,7 +94,7 @@ async function runTests(files) { } // Print results summary. - console.log('\n%s\n', t); + console.log('\n%s\n', String(t)); } /**