From 2e3458a02c0ccc8920a84c616af05c63da40a3cd Mon Sep 17 00:00:00 2001 From: Samuel Brand <48288458+SamuelBrand1@users.noreply.github.com> Date: Thu, 19 Dec 2024 14:11:35 +0000 Subject: [PATCH] fix unit tests --- pipeline/test/constructors/test_constructors.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pipeline/test/constructors/test_constructors.jl b/pipeline/test/constructors/test_constructors.jl index c608729bd..f97fa8265 100644 --- a/pipeline/test/constructors/test_constructors.jl +++ b/pipeline/test/constructors/test_constructors.jl @@ -24,7 +24,7 @@ end @testset "default_tspan: returns an Tuple{Integer, Integer}" begin pipeline = EpiAwareExamplePipeline() - tspan = make_tspan(pipeline) + tspan = make_tspan(pipeline; lookback = 90) @test tspan isa Tuple{Integer, Integer} end @@ -138,7 +138,7 @@ end "α_delay" => 4.0, "θ_delay" => 5.0 / 4.0, "lookahead" => 21, - "lookback" => 35, + "lookback" => 90, "stride" => 7 )