From b9fbe764d947b60ee61b96648e37c8819cf49380 Mon Sep 17 00:00:00 2001 From: Tom French <15848336+TomAFrench@users.noreply.github.com> Date: Mon, 20 May 2024 14:18:30 +0100 Subject: [PATCH] Update yarn-project/scripts/src/benchmarks/aggregate.ts Co-authored-by: Santiago Palladino --- yarn-project/scripts/src/benchmarks/aggregate.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn-project/scripts/src/benchmarks/aggregate.ts b/yarn-project/scripts/src/benchmarks/aggregate.ts index 210fb3dc351..caa95c22010 100644 --- a/yarn-project/scripts/src/benchmarks/aggregate.ts +++ b/yarn-project/scripts/src/benchmarks/aggregate.ts @@ -69,7 +69,7 @@ function append( /** Processes an entry with event name 'acir-proof-generated' and updates results */ function processAcirProofGenerated(entry: ProofConstructed, results: BenchmarkCollectedResults) { - if (entry.acir_test == 'sha256') { + if (entry.acir_test === 'sha256') { append(results, `proof_construction_time_sha256`, entry.threads, entry.value); } }