From 78cfeb70da7dbc1f0840eea80f7cd6c63871e356 Mon Sep 17 00:00:00 2001 From: Zac Spitzer Date: Sat, 21 Dec 2024 13:41:23 +0100 Subject: [PATCH] Update index.cfm --- custom/benchmark/index.cfm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/custom/benchmark/index.cfm b/custom/benchmark/index.cfm index dabfcc0..6a449d6 100644 --- a/custom/benchmark/index.cfm +++ b/custom/benchmark/index.cfm @@ -19,10 +19,9 @@ } longestName = []; - arrayEach( suites, ArrayEach( warmup, function( item ){ - arrayAppend( longestName, len( item ) ); - }) - ); + arrayEach( suites, function( item ){ + arrayAppend( longestName, len( item ) ); + }); longestSuiteName = arrayMax( longestName ); suites = suites.toList();