From 757d8ade06694bd712a2e40c409b381bd942afc1 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Tue, 7 Dec 2021 08:11:38 +0000 Subject: [PATCH] test: test for multidimensional covobs multiplication extended --- tests/linalg_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/linalg_test.py b/tests/linalg_test.py index 55e65e30..58301814 100644 --- a/tests/linalg_test.py +++ b/tests/linalg_test.py @@ -30,7 +30,7 @@ def get_complex_matrix(dimension): def test_matmul(): for dim in [4, 6]: - for const in [1, pe.cov_Obs(1.0, 0.002, 'cov')]: + for const in [1, pe.cov_Obs([1.0, 1.0], [[0.001,0.0001], [0.0001, 0.002]], 'norm')[1]]: my_list = [] length = 100 + np.random.randint(200) for i in range(dim ** 2):