chore: fix linter

This commit is contained in:
Steven 2024-04-13 10:53:39 +08:00
parent c373131b89
commit cf4db17080

View File

@ -113,7 +113,7 @@ func TestIdentityProvider(t *testing.T) {
ctx := context.Background()
const (
testClientId = "test-client-id"
testClientID = "test-client-id"
testCode = "test-code"
testAccessToken = "test-access-token"
testSubject = "123456789"
@ -133,7 +133,7 @@ func TestIdentityProvider(t *testing.T) {
oauth2, err := NewIdentityProvider(
&storepb.OAuth2Config{
ClientId: testClientId,
ClientId: testClientID,
ClientSecret: "test-client-secret",
TokenUrl: fmt.Sprintf("%s/oauth2/token", s.URL),
UserInfoUrl: fmt.Sprintf("%s/oauth2/userinfo", s.URL),