Merge pull request #49692 from huangjiuyuan/fix-oidc-test

Automatic merge from submit-queue (batch tested with PRs 46519, 49794, 49720, 49692, 49821)

fix missing verb at end of format string

**What this PR does / why we need it**:
A missing verb at end of format string in Errorf call happens in `vendor/k8s.io/client-go/plugin/pkg/client/auth/oidc/oidc_test.go`, This PR fixes this problem.

**Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #

**Special notes for your reviewer**:

**Release note**:

`NONE`
This commit is contained in:
Kubernetes Submit Queue 2017-08-01 03:04:46 -07:00 committed by GitHub
commit 6f992c9e51

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)
}
})
}