diff --git a/tests/integration/test_cholesky.py b/tests/integration/test_cholesky.py index 5b2659a16..c4b52754b 100644 --- a/tests/integration/test_cholesky.py +++ b/tests/integration/test_cholesky.py @@ -35,12 +35,6 @@ def test_array_negative_1dim(): num.linalg.cholesky(arr) -def test_array_negative_3dim(): - arr = num.random.randint(0, 9, size=(3, 3, 3)) - with pytest.raises(NotImplementedError): - num.linalg.cholesky(arr) - - def test_array_negative(): arr = num.random.randint(0, 9, size=(3, 2, 3)) expected_exc = ValueError