From 52ab2f192376c8d46d99ccc23b8fb29efc997711 Mon Sep 17 00:00:00 2001 From: Bart de Koning Date: Tue, 3 Dec 2024 16:37:08 +0100 Subject: [PATCH] Actually actually actually fix all tests --- test/parameter_tests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parameter_tests.jl b/test/parameter_tests.jl index 6baee961..e7aa6b63 100644 --- a/test/parameter_tests.jl +++ b/test/parameter_tests.jl @@ -19,7 +19,7 @@ end u = [1.0, 5.0, 3.0, 4.0, 4.0] t = collect(1:5) A = SmoothedConstantInterpolation(u, t; cache_parameters = true) - @test A.p.d ≈ [0.0, 0.5, 0.5, 0.5, 0.5] + @test A.p.d ≈ [0.5, 0.5, 0.5, 0.5, 0.5] @test A.p.c ≈ [0.0, 2.0, -1.0, 0.5, 0.0] end