diff --git a/reporthandling/helpers/v1/listing.go b/reporthandling/helpers/v1/listing.go index 6d6cd3a1..308f39d2 100644 --- a/reporthandling/helpers/v1/listing.go +++ b/reporthandling/helpers/v1/listing.go @@ -131,7 +131,7 @@ func (all *AllLists) ToUniqueResources() { trimmed = append(trimmed, all.skipped...) all.passed = slices.TrimStableUnique(all.passed, trimmed) - // remove failed, skipped and skipped from "other" list + // remove failed, skipped and passed from "other" list trimmed = append(trimmed, all.passed...) all.other = slices.TrimStableUnique(all.other, trimmed) }