fix missing verb at end of format string

Kubernetes-commit: c85d29f5fa3192936ce88b13b79daa43c98203ab
This commit is contained in:
huangjiuyuan 2017-07-27 15:35:29 +08:00 committed by Kubernetes Publisher
parent c7ed6bc9c1
commit 5b4fc26020

View File

@ -110,7 +110,7 @@ func TestExpired(t *testing.T) {
return
}
if test.wantExpired == valid {
t.Errorf("wanted expired %t, got %", test.wantExpired, !valid)
t.Errorf("wanted expired %t, got %t", test.wantExpired, !valid)
}
})
}