Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TaiSakuma committed May 22, 2024
1 parent 8fe23ae commit 53decdc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/stack/async/test_imp.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


@given(st.data())
@settings(max_examples=200, deadline=1000)
@settings(max_examples=200, deadline=None)
async def test_imp(data: st.DataObject):
n_contexts = data.draw(st.integers(min_value=0, max_value=3), label='n_contexts')
n_sends = data.draw(st.integers(min_value=0, max_value=4), label='n_sends')
Expand Down
2 changes: 1 addition & 1 deletion tests/stack/async/test_refs.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


@given(st.data())
@settings(max_examples=200, deadline=1000)
@settings(max_examples=200, deadline=None)
async def test_refs(data: st.DataObject):
'''Assert reference implementations run in exactly the same way.'''
n_contexts = data.draw(st.integers(min_value=0, max_value=3), label='n_contexts')
Expand Down

0 comments on commit 53decdc

Please sign in to comment.