Skip to content

Commit eb67472

Browse files
committed
Update summary table
1 parent e200a31 commit eb67472

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/flakeguard/reports/presentation.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,11 +205,11 @@ func renderSummaryTable(w io.Writer, summary *SummaryData, markdown bool, collap
205205
summaryData := [][]string{
206206
{"Category", "Total"},
207207
{"Unique Tests", fmt.Sprintf("%d", summary.UniqueTestsRun)},
208+
{"Unique Flaky Tests", fmt.Sprintf("%d (%s)", summary.FlakyTests, summary.FlakyTestPercent)},
208209
{"Unique Skipped Tests", fmt.Sprintf("%d", summary.UniqueSkippedTestCount)},
210+
{"Unique Panicked Tests", fmt.Sprintf("%d", summary.PanickedTests)},
209211
{"Total Test Runs", fmt.Sprintf("%d", summary.TotalRuns)},
210212
{"Passed Test Runs", fmt.Sprintf("%d (%s)", summary.PassedRuns, summary.PassPercent)},
211-
{"Flaky Test Runs", fmt.Sprintf("%d (%s)", summary.FlakyTests, summary.FlakyTestPercent)},
212-
{"Panicked Tests", fmt.Sprintf("%d", summary.PanickedTests)},
213213
}
214214
// Only include "Raced Tests" row if race detection is enabled.
215215
if raceDetection {

0 commit comments

Comments
 (0)