From 94bd48d5579ff03931cc8b6ad20ba359a0ec2e2e Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Mon, 15 Sep 2025 07:39:04 -0700 Subject: [PATCH] fix test --- 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 0fa1e7593..4bb0076a3 100644 --- a/tests/app/organization/test_rest.py +++ b/tests/app/organization/test_rest.py @@ -237,7 +237,7 @@ def test_post_create_organization_works(admin_request, sample_organization): @given( name=st.one_of(st.none(), st.just(""), st.text(min_size=1, max_size=50)), - active=st.one_of(st.none(), st.boolean()), + active=st.one_of(st.none(), st.booleans()), organization_type=st.one_of( st.none(), st.sampled_from(list(OrganizationType)),