1
0
mirror of https://github.com/jstemmer/go-junit-report.git synced 2025-04-10 07:38:08 -05:00

Fix const in parser

This commit is contained in:
Joel Stemmer 2012-03-14 12:12:43 +01:00
parent c9c0e1877c
commit 92be560b6c

@ -12,7 +12,7 @@ type Result int
const (
PASS Result = iota
FAIL Result = iota
FAIL
)
type Report struct {