parser/gotest: Remove unnecessary if statement when creating a package

We only execute this branch when we've captured some global output, so
no need to check that again.
This commit is contained in:
Joël Stemmer 2022-08-13 22:06:49 +01:00
parent 4ce910564c
commit b73e4a9ed5

View File

@ -223,7 +223,7 @@ func (b *reportBuilder) CreatePackage(name, result string, duration time.Duratio
Name: name,
Output: b.output.Get(globalID),
}
} else if b.output.Contains(globalID) {
} else {
pkg.Output = b.output.Get(globalID)
}
b.packages = append(b.packages, pkg)