From ad4185180b15e67289220cfadcd61826b0264511 Mon Sep 17 00:00:00 2001 From: anthony-meza Date: Wed, 7 Aug 2024 11:16:50 -0400 Subject: [PATCH] accidentally referred to the incorrect function in the test --- test/test_seasonalcycle.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_seasonalcycle.jl b/test/test_seasonalcycle.jl index 5440d58..1232670 100644 --- a/test/test_seasonalcycle.jl +++ b/test/test_seasonalcycle.jl @@ -4,7 +4,7 @@ t = 1:365 # One year of daily data overtones = 2 # Test fit_mean function -E_mean, F_mean = fit_mean(t) +E_mean, F_mean = mean_matrices(t) @test size(E_mean) == (365, 1) @test all(E_mean[:, 1] .== 1.0)