Skip to content

Commit 0ab326a

Browse files
committed
[no-relnote] Fix format string
Signed-off-by: Evan Lezar <[email protected]>
1 parent b459765 commit 0ab326a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/e2e/framework/framework.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ func (f *Framework) AfterEach(ctx context.Context) {
190190
for namespaceKey, namespaceErr := range nsDeletionErrors {
191191
messages = append(messages, fmt.Sprintf("Couldn't delete ns: %q: %s (%#v)", namespaceKey, namespaceErr, namespaceErr))
192192
}
193-
e2elog.Failf(strings.Join(messages, ","))
193+
e2elog.Failf("%s", strings.Join(messages, ","))
194194
}
195195
}()
196196

0 commit comments

Comments
 (0)