KEYCLOAK-18075 - Remove "role_list" from expected default client scopes

This commit is contained in:
Alfredo Boullosa 2021-05-11 15:28:00 +02:00 committed by Hynek Mlnařík
parent a6d4316084
commit 716afe9404

View file

@ -98,7 +98,7 @@ public class ClientClientScopesTest extends AbstractClientTest {
// Retrieve client through adminClient
found = findClientByClientId(TEST_CLIENT_ID);
Assert.assertNames(found.getDefaultClientScopes(), "email", "role_list"); // SAML client scope 'role_list' is included too in the rep
Assert.assertNames(found.getDefaultClientScopes(), "email");
Assert.assertNames(found.getOptionalClientScopes(), "profile", "address", "phone", "offline_access", "microprofile-jwt");