Strip testdata path from subtests name

This commit is contained in:
Joël Stemmer 2022-04-21 20:42:22 +01:00
parent 49cfa14c14
commit 4976b9b9ae

View File

@ -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)
})
}