Unverified Commit 04f13b63 authored by k8s-ci-robot's avatar k8s-ci-robot Committed by GitHub

Merge pull request #69185 from logicalhan/fix-current-lint-issue

Fix a golint error on head (type doesn't need to declared as it will be inferred)
parents 5b658bb6 46398968
......@@ -37,7 +37,7 @@ func parseTimeOrDie(ts string) metav1.Time {
return metav1.Time{Time: t}
}
var benchmarkPod api.Pod = api.Pod{
var benchmarkPod = api.Pod{
TypeMeta: metav1.TypeMeta{
Kind: "Pod",
APIVersion: "v1",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment