Skip to content

Commit db80940

Browse files
committed
Makes tests with floor_divide more stable on PVC
1 parent 55deb00 commit db80940

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpnp/tests/test_binary_ufuncs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ def do_inplace_op(self, base, other, func):
291291
@pytest.mark.parametrize("dtype", ALL_DTYPES)
292292
def test_basic(self, func, dtype):
293293
a = generate_random_numpy_array(10, dtype)
294-
b = generate_random_numpy_array(10, dtype)
294+
b = generate_random_numpy_array(10, dtype, low=-5, high=5, seed_value=8)
295295
expected = getattr(numpy, func)(a, b)
296296

297297
ia, ib = dpnp.array(a), dpnp.array(b)

0 commit comments

Comments
 (0)