From 347644cbcfa2ad4fa79e011b2283fd721eb202e9 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Mon, 15 Sep 2025 12:30:50 -0700 Subject: [PATCH] debug --- tests/app/organization/test_rest.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/app/organization/test_rest.py b/tests/app/organization/test_rest.py index b80cab1af..08db6006e 100644 --- a/tests/app/organization/test_rest.py +++ b/tests/app/organization/test_rest.py @@ -245,7 +245,7 @@ def test_fuzz_create_org_with_edge_cases( @settings(max_examples=10) @given( name=st.one_of(st.none(), st.just(""), st.text(min_size=1, max_size=50)), - active=st.one_of(st.none(), st.booleans()), + active=st.booleans(), organization_type=st.one_of( st.none(), st.sampled_from(list(OrganizationType)), @@ -277,7 +277,6 @@ def test_fuzz_create_org_with_edge_cases( isinstance(name, str) and name.strip() != "" and isinstance(organization_type, OrganizationType) - and isinstance(active, bool) } expected_status = 201 if is_valid else 400 try: