nit benchmarks improvement

This commit is contained in:
Ruben Fiszel
2025-02-17 21:54:00 +01:00
parent 953082681e
commit 3616df1940

View File

@@ -26,7 +26,7 @@ async function verifyOutputs(uuids: string[], workspace: string) {
incorrectResults++;
}
if (job.result !== uuid) {
console.log(`Job ${uuid} did not output the correct value`);
console.log(`Job ${uuid} did not output the correct value: ${JSON.stringify(job.result)}`);
incorrectResults++;
}
} catch (_) {