Skip to content

Commit

Permalink
fix(commit-history-graph): fix test counts
Browse files Browse the repository at this point in the history
Test counts on commit history graph was wrong, this fix it

Closes #307
  • Loading branch information
WilsonNet committed Sep 17, 2024
1 parent f81bbe8 commit eea52bb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ const CommitNavigationGraph = (): JSX.Element => {
item.non_boots_tests.skip_count +
item.non_boots_tests.error_count +
item.non_boots_tests.done_count;
series[0].data?.unshift(item.boots_tests.pass_count);
series[1].data?.unshift(item.boots_tests.fail_count);
series[0].data?.unshift(item.non_boots_tests.pass_count);
series[1].data?.unshift(item.non_boots_tests.fail_count);
series[2].data?.unshift(inconclusiveCount);
}
commitData.unshift({
Expand Down

0 comments on commit eea52bb

Please sign in to comment.