diff --git a/tests/lax_test.py b/tests/lax_test.py index a2f25a7be99b..ecf8fd0c921d 100644 --- a/tests/lax_test.py +++ b/tests/lax_test.py @@ -152,7 +152,7 @@ def op_record(op, nargs, dtypes, rng_factory, tol=None): op_record("bitwise_not", 1, bool_dtypes, jtu.rand_small), op_record("bitwise_or", 2, bool_dtypes, jtu.rand_small), op_record("bitwise_xor", 2, bool_dtypes, jtu.rand_small), - op_record("population_count", 1, uint_dtypes, jtu.rand_small), + op_record("population_count", 1, uint_dtypes, partial(jtu.rand_int, 1 << 32)), op_record("add", 2, default_dtypes + complex_dtypes, jtu.rand_small), op_record("sub", 2, default_dtypes + complex_dtypes, jtu.rand_small),