diff --git a/dpnp/tests/test_linalg.py b/dpnp/tests/test_linalg.py index fbd21f9d41f..1aa3781dcf6 100644 --- a/dpnp/tests/test_linalg.py +++ b/dpnp/tests/test_linalg.py @@ -601,6 +601,7 @@ def test_out(self): expected = numpy.einsum("ii->i", a.asnumpy()) assert_dtype_allclose(result, expected) + @testing.with_requires("numpy>=2.4.5") def test_out_0d(self): a = numpy.ones(7, dtype=int) out = numpy.array(0, dtype=a.dtype)