mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-04 20:50:14 -05:00
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:
parent
4ce910564c
commit
b73e4a9ed5
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user