diff --git a/dpnp/tests/test_mathematical.py b/dpnp/tests/test_mathematical.py index 012a3eefdd0..7da7a44e01b 100644 --- a/dpnp/tests/test_mathematical.py +++ b/dpnp/tests/test_mathematical.py @@ -1188,7 +1188,7 @@ def test_complex_fp(self, dtype_x, dtype_y): "left, right", [[-40, 40], [dpnp.array(-40), dpnp.array(40)]] ) def test_left_right_args(self, dtype, left, right): - x = numpy.array([-1, 0, 1, 2, 3, 4, 5, 6], dtype=dtype) + x = numpy.array([0, 1, 2, 3, 4, 5, 6], dtype=dtype) xp = numpy.array([0, 3, 6], dtype=dtype) fp = numpy.array([0, 9, 18], dtype=dtype)