mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 21:18:08 -05:00
parser/gotest: Remove unused runErrors field from reportBuilder
This commit is contained in:
parent
01f2cdde22
commit
d75fb6d4c3
@ -23,7 +23,6 @@ type reportBuilder struct {
|
|||||||
packages []gtr.Package
|
packages []gtr.Package
|
||||||
tests map[int]gtr.Test
|
tests map[int]gtr.Test
|
||||||
buildErrors map[int]gtr.Error
|
buildErrors map[int]gtr.Error
|
||||||
runErrors map[int]gtr.Error
|
|
||||||
|
|
||||||
// state
|
// state
|
||||||
nextID int // next free unused id
|
nextID int // next free unused id
|
||||||
@ -43,7 +42,6 @@ func newReportBuilder() *reportBuilder {
|
|||||||
return &reportBuilder{
|
return &reportBuilder{
|
||||||
tests: make(map[int]gtr.Test),
|
tests: make(map[int]gtr.Test),
|
||||||
buildErrors: make(map[int]gtr.Error),
|
buildErrors: make(map[int]gtr.Error),
|
||||||
runErrors: make(map[int]gtr.Error),
|
|
||||||
nextID: 1,
|
nextID: 1,
|
||||||
output: collector.New(),
|
output: collector.New(),
|
||||||
parentIDs: make(map[int]struct{}),
|
parentIDs: make(map[int]struct{}),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user