Browse Source

fix: fix testing create_client_authz_scopes parameters

pull/399/head
hadeer_e 1 year ago
parent
commit
1d864703a3
  1. 4
      tests/test_keycloak_admin.py

4
tests/test_keycloak_admin.py

@ -901,8 +901,8 @@ def test_clients(admin: KeycloakAdmin, realm: str):
)
assert err.match('404: b\'{"error":"Could not find client"')
assert admin.create_client_authz_scopes(
client_id=auth_client_id, payload={"name": "test-authz-scope"}, skip_exists=True
) == {"msg": "Already exists"}
client_id=auth_client_id, payload={"name": "test-authz-scope"}
)
res = admin.get_client_authz_scopes(client_id=auth_client_id)
assert len(res) == 1

Loading…
Cancel
Save