mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
parser/gotest: Trim tab prefix from output
This commit is contained in:
parent
5f2324f6d4
commit
79753fd332
@ -126,7 +126,7 @@ func (p *parser) benchmark(name, iterations, nsPerOp, mbPerSec, bytesPerOp, allo
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (p *parser) output(line string) {
|
func (p *parser) output(line string) {
|
||||||
p.add(gtr.Event{Type: "output", Data: line})
|
p.add(gtr.Event{Type: "output", Data: strings.TrimPrefix(line, "\t")})
|
||||||
}
|
}
|
||||||
|
|
||||||
func parseSeconds(s string) time.Duration {
|
func parseSeconds(s string) time.Duration {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user