From 3d712f24172d66ca8e24725073f77052f3251cd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Thu, 7 Jul 2022 00:19:59 +0100 Subject: [PATCH] junit: Don't include File attribute when it's empty --- junit/junit.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/junit/junit.go b/junit/junit.go index 8fac206..bd03cea 100644 --- a/junit/junit.go +++ b/junit/junit.go @@ -52,7 +52,7 @@ type Testsuite struct { Skipped int `xml:"skipped,attr,omitempty"` Time string `xml:"time,attr"` // duration in seconds Timestamp string `xml:"timestamp,attr,omitempty"` // date and time in ISO8601 - File string `xml:"file,attr"` + File string `xml:"file,attr,omitempty"` Properties *[]Property `xml:"properties>property,omitempty"` Testcases []Testcase `xml:"testcase,omitempty"`