Skip to content

Commit

Permalink
test: put deadline increase in the right place
Browse files Browse the repository at this point in the history
  • Loading branch information
hollandjg committed Nov 22, 2023
1 parent b0f89b4 commit 7cdeca1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
logger = logging.getLogger(__name__)


@settings(suppress_health_check={HealthCheck.too_slow}, deadline=500)
@given(standard_state_dataclass_strategy(), serializer_dump_load_strategy())
@settings(suppress_health_check={HealthCheck.too_slow}, deadline=500)
def test_state_serialize_deserialize(o: StandardStateDataClass, dump_load):
o_loaded = dump_load(o)
assert o.variables == o_loaded.variables
Expand Down

0 comments on commit 7cdeca1

Please sign in to comment.