From 4fb6c0494ec4bc6e526c215d736f948c15df0e84 Mon Sep 17 00:00:00 2001 From: Abhijit Deo <72816663+abhi-glitchhg@users.noreply.github.com> Date: Mon, 30 Oct 2023 20:00:42 +0530 Subject: [PATCH] Update test_correlation.py --- tests/test_correlation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_correlation.py b/tests/test_correlation.py index 7b9eb2a..b64b5e9 100644 --- a/tests/test_correlation.py +++ b/tests/test_correlation.py @@ -7,7 +7,7 @@ def test_hello(): def test_correlation(): - for i in (4,8,10,12,16,22,100,1000): + for i in (4,8,10,12,16,22,100,500): rand_array = np.random.uniform(0,1,i*i).reshape(i,i) corr_arr = np.tril(rand_array) + np.triu(rand_array.T,1) assert (corr_arr!=corr_arr.T).sum().sum() == 0