junit: Use consistent receiver name

This commit is contained in:
Joël Stemmer 2022-08-11 00:49:13 +01:00
parent 5616b5e921
commit fbfb33add1

View File

@ -90,8 +90,8 @@ func (t *Testsuite) AddTestcase(tc Testcase) {
}
// SetTimestamp sets the timestamp in this Testsuite.
func (ts *Testsuite) SetTimestamp(t time.Time) {
ts.Timestamp = t.Format(time.RFC3339)
func (t *Testsuite) SetTimestamp(timestamp time.Time) {
t.Timestamp = timestamp.Format(time.RFC3339)
}
// Testcase represents a single test with its results.