diff --git a/e2etests/report/main.go b/e2etests/report/main.go index 652807d0a..c471991ca 100644 --- a/e2etests/report/main.go +++ b/e2etests/report/main.go @@ -102,17 +102,19 @@ func main() { if _, err := os.Stat(gotPath); err == nil { hasGot = true } + // e.g. arrowhead_adjustment/dagre + name := filepath.Join(filepath.Base(testCaseRoot), info.Name()) if deltaFlag { if hasGot { tests = append(tests, TestItem{ - Name: info.Name(), + Name: name, ExpSVG: &fullPath, GotSVG: gotPath, }) } } else { test := TestItem{ - Name: info.Name(), + Name: name, ExpSVG: nil, GotSVG: fullPath, }