From 2c2890d5ea9c845e53b3f432edef1b9451a06ee7 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Tue, 19 Jul 2022 12:42:45 +0100 Subject: [PATCH] tests: padding added to is_matrix_symmetric test. --- tests/correlators_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/correlators_test.py b/tests/correlators_test.py index bf6711ae..d10dc144 100644 --- a/tests/correlators_test.py +++ b/tests/correlators_test.py @@ -378,7 +378,7 @@ def test_is_matrix_symmetric(): if i != j: mat[j, i] = obs corr_data.append(mat) - corr = pe.Corr(corr_data) + corr = pe.Corr(corr_data, padding=[0, 2]) assert corr.is_matrix_symmetric() corr[0][0, 1] = 1.0 * corr[0][0, 1]