We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5616b5e commit fbfb33aCopy full SHA for fbfb33a
junit/junit.go
@@ -90,8 +90,8 @@ func (t *Testsuite) AddTestcase(tc Testcase) {
90
}
91
92
// SetTimestamp sets the timestamp in this Testsuite.
93
-func (ts *Testsuite) SetTimestamp(t time.Time) {
94
- ts.Timestamp = t.Format(time.RFC3339)
+func (t *Testsuite) SetTimestamp(timestamp time.Time) {
+ t.Timestamp = timestamp.Format(time.RFC3339)
95
96
97
// Testcase represents a single test with its results.
0 commit comments