This commit is contained in:
Kenneth Kehl
2025-09-15 14:41:58 -07:00
parent cc0ba9d20d
commit 09625047b0

View File

@@ -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):