parser/gotest: continue with next item when we find a test or benchmark

This commit is contained in:
Joël Stemmer 2022-05-21 23:19:41 +01:00
parent 0655053883
commit 01f41237f7

View File

@ -234,9 +234,12 @@ func (b *reportBuilder) CreatePackage(name, result string, duration time.Duratio
for id := 1; id < b.nextID; id++ {
if t, ok := b.tests[id]; ok {
tests = append(tests, t)
continue
}
if bm, ok := b.benchmarks[id]; ok {
benchmarks = append(benchmarks, bm)
continue
}
}