Browse Source

test: in

pull/601/head
Richard Nemeth 7 months ago
parent
commit
a332c88fa1
No known key found for this signature in database GPG Key ID: 21C39470DF3DEC39
  1. 2
      tests/test_keycloak_admin.py

2
tests/test_keycloak_admin.py

@ -5378,7 +5378,7 @@ async def test_a_auth_flows(admin: KeycloakAdmin, realm: str):
# Test flow executions
res = await admin.a_get_authentication_flow_executions(flow_alias="browser")
assert len(res) == [8, 12], res
assert len(res) in [8, 12], res
with pytest.raises(KeycloakGetError) as err:
await admin.a_get_authentication_flow_executions(flow_alias="bad")

Loading…
Cancel
Save