mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-31 23:37:01 +00:00
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:
commit
6f992c9e51
@ -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)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user