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']})`;