Browse Source

feat(api): apply formating

pull/400/head
Hadeer-Elsaeed 2 years ago
parent
commit
13facfdf2a
  1. 8
      tests/test_keycloak_admin.py

8
tests/test_keycloak_admin.py

@ -1565,7 +1565,7 @@ def test_enable_token_exchange(admin: KeycloakAdmin, realm: str):
)
# Create permissions on the target client to reference this policy
res = admin.create_client_authz_scope_permission(
admin.create_client_authz_scope_permission(
payload={
"name": "test-permission",
"type": "scope",
@ -1580,10 +1580,12 @@ def test_enable_token_exchange(admin: KeycloakAdmin, realm: str):
with pytest.raises(KeycloakPostError) as err:
admin.create_client_scope(payload={"name": "test-scope"})
assert err.match('404: b\'{"errorMessage":"Could not find client"}\'')
permission_name = admin.get_client_authz_scope_permission(
client_id=realm_management_id)["name"]
permission_name = admin.get_client_authz_scope_permission(client_id=realm_management_id)[
"name"
]
assert permission_name == "test-permission"
def test_email(admin: KeycloakAdmin, user: str):
"""Test email.

Loading…
Cancel
Save