diff --git a/tests/app/organization/test_rest.py b/tests/app/organization/test_rest.py index 0f7f2f9aa..945a26322 100644 --- a/tests/app/organization/test_rest.py +++ b/tests/app/organization/test_rest.py @@ -246,8 +246,8 @@ def test_fuzz_create_org_with_edge_cases( @given( name=st.text(min_size=1, max_size=50), active=st.booleans(), - organization_type=st.one_of( - OrganizationType.FEDERAL, OrganizationType.STATE, OrganizationType.OTHER + organization_type=st.sampled_from( + [OrganizationType.FEDERAL, OrganizationType.STATE, OrganizationType.OTHER] ), ) def inner(name, active, organization_type):