Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
ev-br committed Dec 1, 2024
1 parent c28b862 commit 32a2afd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion array_api_tests/hypothesis_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ def symmetric_matrices(draw, dtypes=real_floating_dtypes, finite=True, bound=10.
finite = draw(finite)
if finite:
elements = {'allow_nan': False, 'allow_infinity': False,
'min_value': 1/bound, 'max_value': bound}
'min_value': 1, 'max_value': 10}
else:
elements = None
a = draw(arrays(dtype=dtype, shape=shape, elements=elements))
Expand Down

0 comments on commit 32a2afd

Please sign in to comment.