Skip to content

Commit

Permalink
chore: fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
boojack committed Apr 13, 2024
1 parent c373131 commit cf4db17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/idp/oauth2/oauth2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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),
Expand Down

0 comments on commit cf4db17

Please sign in to comment.