Skip to content

Commit b72faf3

Browse files
committed
chore: use string verb to format logging messages in tests
The %w makes the CI to fail, replacing it back to %s
1 parent ea8a7f8 commit b72faf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/e2e/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ func getLabelsDocumentation() (map[string][]string, error) {
188188
return nil
189189
})
190190
if err != nil {
191-
log.Fatalf("cannot walk the documentation directory: %w", err)
191+
log.Fatalf("cannot walk the documentation directory: %s", err)
192192
}
193193

194194
return documentedMetrics, nil

0 commit comments

Comments
 (0)