From 8a0525eeca948a8de9b63ea18688685b3548cbfa Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Mon, 15 Sep 2025 14:21:04 -0700 Subject: [PATCH] ugh --- tests/app/organization/test_rest.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/app/organization/test_rest.py b/tests/app/organization/test_rest.py index 8439dd6f8..2070c7490 100644 --- a/tests/app/organization/test_rest.py +++ b/tests/app/organization/test_rest.py @@ -246,10 +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( - # st.none(), - st.sampled_from(list(OrganizationType)), - st.integers(min_value=100, max_value=999), + organization_type=st.sampled_from( + OrganizationType.FEDERAL, OrganizationType.STATE, OrganizationType.OTHER ), ) def inner(name, active, organization_type):