mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-04 20:50:14 -05:00
parser/gotest: timestampFunc should always be set, skip nil check
This commit is contained in:
parent
1c826cb28d
commit
4ce910564c
@ -187,12 +187,9 @@ func (b *reportBuilder) CreateBuildError(packageName string) {
|
||||
// so far. Afterwards all state is reset.
|
||||
func (b *reportBuilder) CreatePackage(name, result string, duration time.Duration, data string) {
|
||||
pkg := gtr.Package{
|
||||
Name: name,
|
||||
Duration: duration,
|
||||
}
|
||||
|
||||
if b.timestampFunc != nil {
|
||||
pkg.Timestamp = b.timestampFunc()
|
||||
Name: name,
|
||||
Duration: duration,
|
||||
Timestamp: b.timestampFunc(),
|
||||
}
|
||||
|
||||
// Build errors are treated somewhat differently. Rather than having a
|
||||
|
Loading…
x
Reference in New Issue
Block a user