From a332c88fa1a3fe741c53c60b14cd3e5774d941e5 Mon Sep 17 00:00:00 2001 From: Richard Nemeth Date: Sat, 5 Oct 2024 07:10:12 +0200 Subject: [PATCH] test: in --- tests/test_keycloak_admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_keycloak_admin.py b/tests/test_keycloak_admin.py index 00fa836..f73a51c 100644 --- a/tests/test_keycloak_admin.py +++ b/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")