From 98a73bd44a91419377de8774a47733ce5c630847 Mon Sep 17 00:00:00 2001 From: Manolis Papadakis Date: Wed, 8 Nov 2023 14:12:57 -0800 Subject: [PATCH] Remove negative test that's now passing (#1073) --- tests/integration/test_cholesky.py | 6 ------ 1 file changed, 6 deletions(-) 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