Skip to content

Commit

Permalink
fix: Stop sig-network badge misreporting as zero failures
Browse files Browse the repository at this point in the history
The value of sig-network failures was not being set as it was matching
 against the badge filename rather than the badge name.

This resulted in the sig-network badge always appearing with 0 failures

Signed-off-by: Brian Carey <bcarey@redhat.com>
  • Loading branch information
brianmcarey committed Aug 9, 2024
1 parent 9e933c1 commit c5fc787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/output/output.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ func (b *Handler) writeSIGRetestBadge(name, filePath string, data types.RunningA
switch name {
case constants.SIGComputeRetestBadgeName:
value = data.SIGComputeRetest
case constants.SIGNetworkRetestBadgeFileName:
case constants.SIGNetworkRetestBadgeName:
value = data.SIGNetworkRetest
case constants.SIGStorageRetestBadgeName:
value = data.SIGStorageRetest
Expand Down

0 comments on commit c5fc787

Please sign in to comment.