Skip to content

Commit

Permalink
fix trend colors (fixes #215, via #337)
Browse files Browse the repository at this point in the history
  • Loading branch information
florvix7snub authored Oct 14, 2024
1 parent 9186970 commit 2156469
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,11 +208,11 @@ private CategoryDataset buildDataSet() {

for (AllureReportBuildAction a = this; a != null; a = a.getPreviousResult()) {
final ChartUtil.NumberOnlyBuildLabel columnKey = new ChartUtil.NumberOnlyBuildLabel(a.run);
dsb.add(a.getFailedCount(), "failed", columnKey);
dsb.add(a.getBrokenCount(), "broken", columnKey);
dsb.add(a.getPassedCount(), "passed", columnKey);
dsb.add(a.getSkipCount(), "skipped", columnKey);
dsb.add(a.getUnknownCount(), "unknown", columnKey);
dsb.add(a.getFailedCount(), "a_failed", columnKey);
dsb.add(a.getBrokenCount(), "b_broken", columnKey);
dsb.add(a.getPassedCount(), "c_passed", columnKey);
dsb.add(a.getSkipCount(), "d_skipped", columnKey);
dsb.add(a.getUnknownCount(), "e_unknown", columnKey);
}
return dsb.build();
}
Expand Down

0 comments on commit 2156469

Please sign in to comment.