diff --git a/oidc/oidc_test.go b/oidc/oidc_test.go index 0d84317..4788112 100644 --- a/oidc/oidc_test.go +++ b/oidc/oidc_test.go @@ -10,12 +10,4 @@ import ( func TestOIDCProvider(t *testing.T) { _, err := NewOIDCProvider("", "", "", "", nil) assert.Error(t, err) - - // test google provider - p, err := NewOIDCProvider("client_id", "client_secret", "http://localhost:8080", "https://accounts.google.com", []string{"email", "profile"}) - assert.NotNil(t, p) - assert.Nil(t, err) - - url := p.IdpAuthURL("code_challenge123") - assert.NotEmpty(t, url) }