Skip to content

Commit 0e0e706

Browse files
authored
Update Template Paths (#2149)
Updates the paths for templates used in e2e summary post-internalization Signed-off-by: Daniel Franz <[email protected]>
1 parent 3ad6225 commit 0e0e706

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/shared/util/testutils/summary.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ func executeTemplate(templateFile string, obj any) (string, error) {
160160
if err != nil {
161161
return "", fmt.Errorf("failed to get working directory: %w", err)
162162
}
163-
tmpl, err := template.New(templateFile).ParseGlob(filepath.Join(wd, "../utils/templates", templateFile))
163+
tmpl, err := template.New(templateFile).ParseGlob(filepath.Join(wd, "../../internal/shared/util/testutils/templates", templateFile))
164164
if err != nil {
165165
return "", err
166166
}

0 commit comments

Comments
 (0)