Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
tybug committed Jan 31, 2024
1 parent c8c326a commit 85316f4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion hypothesis-python/tests/conjecture/test_ir.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ def ir_types_and_kwargs(draw):
# those cases correctly.
@example(("integer", {"min_value": None, "max_value": -(2**200), "weights": None}))
@example(("integer", {"min_value": 2**200, "max_value": None, "weights": None}))
@example(("integer", {"min_value": -(2**200), "max_value": 2**200, "weights": None}))
@example(
("integer", {"min_value": -(2**200), "max_value": 2**200, "weights": None})
)
@given(ir_types_and_kwargs())
def test_compute_max_children_is_positive(ir_type_and_kwargs):
(ir_type, kwargs) = ir_type_and_kwargs
Expand Down

0 comments on commit 85316f4

Please sign in to comment.