Commit 6f992c9e authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

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`
parents 6eea2838 c85d29f5
...@@ -110,7 +110,7 @@ func TestExpired(t *testing.T) { ...@@ -110,7 +110,7 @@ func TestExpired(t *testing.T) {
return return
} }
if test.wantExpired == valid { if test.wantExpired == valid {
t.Errorf("wanted expired %t, got %", test.wantExpired, !valid) t.Errorf("wanted expired %t, got %t", test.wantExpired, !valid)
} }
}) })
} }
......
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