From 5b4fc260205ca60e1a9d60bda3a9ef8c31493aff Mon Sep 17 00:00:00 2001 From: huangjiuyuan Date: Thu, 27 Jul 2017 15:35:29 +0800 Subject: [PATCH] fix missing verb at end of format string Kubernetes-commit: c85d29f5fa3192936ce88b13b79daa43c98203ab --- plugin/pkg/client/auth/oidc/oidc_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/pkg/client/auth/oidc/oidc_test.go b/plugin/pkg/client/auth/oidc/oidc_test.go index eb09f910..c14a3a84 100644 --- a/plugin/pkg/client/auth/oidc/oidc_test.go +++ b/plugin/pkg/client/auth/oidc/oidc_test.go @@ -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) } }) }