Skip to content

Commit

Permalink
Remove negative test that's now passing (#1073)
Browse files Browse the repository at this point in the history
  • Loading branch information
manopapad authored Nov 8, 2023
1 parent b66e2ec commit 98a73bd
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions tests/integration/test_cholesky.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 98a73bd

Please sign in to comment.