From 3bc3b6644a3f959307d8281b770b898cd173f0a1 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Mon, 15 Sep 2025 15:42:29 -0700 Subject: [PATCH] ugh --- tests/app/organization/test_rest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/app/organization/test_rest.py b/tests/app/organization/test_rest.py index e158aee08..5d57ee540 100644 --- a/tests/app/organization/test_rest.py +++ b/tests/app/organization/test_rest.py @@ -3,7 +3,7 @@ from unittest.mock import Mock import pytest from freezegun import freeze_time -from hypothesis import given, settings +from hypothesis import given from hypothesis import strategies as st from sqlalchemy import select from sqlalchemy.exc import SQLAlchemyError @@ -242,7 +242,6 @@ def test_fuzz_create_org_with_edge_cases( admin_request, ): - @settings(max_examples=5) @given( name=st.uuids().map(str), active=st.booleans(), @@ -279,6 +278,7 @@ def test_fuzz_create_org_with_edge_cases( _expected_status=expected_status, ) if is_valid: + assert response == "FOO" assert response.status_code == 201 assert len(_get_organizations()) == initial_count + 1 else: