diff --git a/dpnp/tests/test_binary_ufuncs.py b/dpnp/tests/test_binary_ufuncs.py index 362aae3a047b..782541ab41f9 100644 --- a/dpnp/tests/test_binary_ufuncs.py +++ b/dpnp/tests/test_binary_ufuncs.py @@ -291,7 +291,7 @@ def do_inplace_op(self, base, other, func): @pytest.mark.parametrize("dtype", ALL_DTYPES) def test_basic(self, func, dtype): a = generate_random_numpy_array(10, dtype) - b = generate_random_numpy_array(10, dtype) + b = generate_random_numpy_array(10, dtype, low=-5, high=5, seed_value=8) expected = getattr(numpy, func)(a, b) ia, ib = dpnp.array(a), dpnp.array(b)