From 53949598800bc5e87277e68472913e04184881a6 Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Mon, 23 Jun 2025 18:42:00 -0400 Subject: [PATCH] Fixed some formatting of the benchmark scoring --- assets/scripts/test.coffee | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/assets/scripts/test.coffee b/assets/scripts/test.coffee index 130a3d1..ffcfe32 100644 --- a/assets/scripts/test.coffee +++ b/assets/scripts/test.coffee @@ -32,11 +32,10 @@ fetchTestBenchmarkResults = (testId, benchmarkId) -> for result in resultData avg_total += result.avgScore - min_total += result.minScore - max_total += result.maxScore + min_total += result.minScore if result.minScore + max_total += result.maxScore if result.maxScore tableRow = $("#results-table tr[data-benchmark-id=#{benchmarkId}]") - tableRow.empty() tableRow.append('' + benchmarkData.name + '')