mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-24 20:24:09 +00:00
Modify err output format from %s to %v
This commit is contained in:
parent
ad7ececcd0
commit
e3bff25dbb
@ -606,7 +606,7 @@ func TestList(t *testing.T) {
|
||||
for _, item := range table {
|
||||
result, err := aws.List(item.input)
|
||||
if err != nil {
|
||||
t.Errorf("Expected call with %v to succeed, failed with %s", item.input, err)
|
||||
t.Errorf("Expected call with %v to succeed, failed with %v", item.input, err)
|
||||
}
|
||||
if e, a := item.expect, result; !reflect.DeepEqual(e, a) {
|
||||
t.Errorf("Expected %v, got %v", e, a)
|
||||
|
Loading…
Reference in New Issue
Block a user