From 4976b9b9aece3fb52c129993fe3016f9a963571a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Thu, 21 Apr 2022 20:42:22 +0100 Subject: [PATCH] Strip testdata path from subtests name --- internal/gojunitreport/go-junit-report_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/gojunitreport/go-junit-report_test.go b/internal/gojunitreport/go-junit-report_test.go index bbe1edd..606b703 100644 --- a/internal/gojunitreport/go-junit-report_test.go +++ b/internal/gojunitreport/go-junit-report_test.go @@ -44,7 +44,7 @@ func TestRun(t *testing.T) { continue } - t.Run(file, func(t *testing.T) { + t.Run(filepath.Base(file), func(t *testing.T) { testRun(file, testDataDir+reportFile, conf, t) }) }