From 0bc5af610e684310b2c2882ff3f0506a353bd541 Mon Sep 17 00:00:00 2001 From: Laurent Senta Date: Tue, 25 Jul 2023 14:05:22 +0200 Subject: [PATCH] ci: fix rendering --- aggregate-into-table.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aggregate-into-table.js b/aggregate-into-table.js index a5295a595..ef190b223 100644 --- a/aggregate-into-table.js +++ b/aggregate-into-table.js @@ -37,10 +37,10 @@ const cellRender = (cell) => { } if (cell['fail'] > 0) { - return `:red_circle: (failed ${cell['fail']} / ${cell['total']})`; + return `:red_circle: (${cell['pass']} / ${cell['total']})`; } if (cell['skip'] > 0) { - return `:yellow_circle: (skipped ${cell['skip']} / ${cell['total']})`; + return `:yellow_circle: (skipped)`; } if (cell['pass'] > 0) { return `:green_circle: (${cell['pass']} / ${cell['total']})`;