From fbfb33add1f2fe26a1003397010b8ef41b933371 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Thu, 11 Aug 2022 00:49:13 +0100 Subject: [PATCH] junit: Use consistent receiver name --- junit/junit.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/junit/junit.go b/junit/junit.go index bd03cea..899fe18 100644 --- a/junit/junit.go +++ b/junit/junit.go @@ -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.