From f8988dca7c18b3fa23843feb92e10c89b60bee0a Mon Sep 17 00:00:00 2001 From: Zac Spitzer Date: Mon, 18 Nov 2024 17:22:01 +0100 Subject: [PATCH] force wrap long spec names --- .github/workflows/presidecms.yml | 2 +- custom/spreadsheet-cfml/test/report.cfm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/presidecms.yml b/.github/workflows/presidecms.yml index 7af9e61..bd37bb6 100644 --- a/.github/workflows/presidecms.yml +++ b/.github/workflows/presidecms.yml @@ -53,7 +53,7 @@ jobs: needs: [ setup-presidecms ] strategy: fail-fast: false - #max-parallel: 1 + max-parallel: 1 matrix: luceeVersion: [ 5.4/snapshot/jar, 6.0/snapshot/jar, 6.1/snapshot/jar, 6.1.0/snapshot/jar, 6.2/snapshot/jar ] javaVersion: [ 11, 21 ] diff --git a/custom/spreadsheet-cfml/test/report.cfm b/custom/spreadsheet-cfml/test/report.cfm index e15ed9f..a17e20a 100644 --- a/custom/spreadsheet-cfml/test/report.cfm +++ b/custom/spreadsheet-cfml/test/report.cfm @@ -147,7 +147,7 @@ var row = []; loop array=suiteSpecs item="test" { - ArrayAppend( row, test.suiteSpec ); + ArrayAppend( row, wrap(test.suiteSpec, 70) ); loop array=sortedRuns item="local.run" { if ( structKeyExists( run.stats, test.suiteSpec ) ) arrayAppend( row, numberFormat( run.stats[test.suiteSpec].time ) );