From ee7830b37fc0fdf2b86775983bbf225ab5c94efc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicholas=20Kr=C3=A4mer?= Date: Wed, 8 Jan 2025 11:21:53 +0100 Subject: [PATCH] Delete an incorrect docstring --- tests/test_eig/test_eigh_partial.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/test_eig/test_eigh_partial.py b/tests/test_eig/test_eigh_partial.py index a560984..cff3fd3 100644 --- a/tests/test_eig/test_eigh_partial.py +++ b/tests/test_eig/test_eigh_partial.py @@ -5,11 +5,6 @@ def test_equal_to_linalg_eigh(nrows=10): - """The output of full-depth decomposition should be equal (*) to linalg.svd(). - - (*) Note: The singular values should be identical, - and the orthogonal matrices should be orthogonal. They are not unique. - """ eigvals = np.arange(1.0, 1.0 + nrows) A = test_util.symmetric_matrix_from_eigenvalues(eigvals) v0 = np.ones((nrows,))