mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
junit: Use consistent receiver name
This commit is contained in:
parent
5616b5e921
commit
fbfb33add1
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user