From 02b57817ae06304c0e3fd6a69ac5dc02b4071f4f Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Tue, 30 May 2023 14:03:01 +0100 Subject: [PATCH] fix: adjusted maximal value for rho in test_gamma_method_irregular. (#188) --- tests/obs_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/obs_test.py b/tests/obs_test.py index 4bf923c8..73bedd55 100644 --- a/tests/obs_test.py +++ b/tests/obs_test.py @@ -762,7 +762,7 @@ def test_gamma_method_irregular(): N = 15 for i in range(10): arr = np.random.normal(1, .2, size=N) - for rho in .1 * np.arange(20): + for rho in .05 * np.arange(20): carr = gen_autocorrelated_array(arr, rho) a = pe.Obs([carr], ['a']) a.gm()