Fix T.Log call containing a formatting directive.

pull/3218/head
Thomas Stromberg 2018-09-26 15:38:18 -07:00
parent abf6b5e5b6
commit 45379c61c2
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ func testClusterStatus(t *testing.T) {
}
if status != api.ConditionTrue {
err := fmt.Errorf("Component %s is not Healthy! Status: %s", i.GetName(), status)
t.Log("Retrying, %s", err)
t.Logf("Retrying, %s", err)
return err
}
}