From cc0ba9d20d903315419ac09e253ddee6e7cdf8d7 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Mon, 15 Sep 2025 14:29:57 -0700 Subject: [PATCH] ugh --- tests/app/organization/test_rest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/organization/test_rest.py b/tests/app/organization/test_rest.py index 2070c7490..0f7f2f9aa 100644 --- a/tests/app/organization/test_rest.py +++ b/tests/app/organization/test_rest.py @@ -246,7 +246,7 @@ def test_fuzz_create_org_with_edge_cases( @given( name=st.text(min_size=1, max_size=50), active=st.booleans(), - organization_type=st.sampled_from( + organization_type=st.one_of( OrganizationType.FEDERAL, OrganizationType.STATE, OrganizationType.OTHER ), )