fix(providers): set prompt select_account again (#5329)

This commit is contained in:
Livio Spring
2023-03-01 08:17:51 +01:00
committed by GitHub
parent 3dbb6f7c67
commit 966df56026
10 changed files with 13 additions and 12 deletions

View File

@@ -32,7 +32,7 @@ func TestProvider_BeginAuth(t *testing.T) {
scopes: []string{"openid"},
},
want: &oidc.Session{
AuthURL: "https://accounts.google.com/o/oauth2/v2/auth?client_id=clientID&redirect_uri=redirectURI&response_type=code&scope=openid&state=testState",
AuthURL: "https://accounts.google.com/o/oauth2/v2/auth?client_id=clientID&prompt=select_account&redirect_uri=redirectURI&response_type=code&scope=openid&state=testState",
},
},
}