From 47421cb191aaeb4d281ddf6a7e26577db93140f2 Mon Sep 17 00:00:00 2001 From: apmypb Date: Mon, 9 Sep 2024 15:02:07 +0200 Subject: [PATCH] fixup --- test/test_alternative_filters.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test_alternative_filters.jl b/test/test_alternative_filters.jl index ff33be1..ce9adac 100644 --- a/test/test_alternative_filters.jl +++ b/test/test_alternative_filters.jl @@ -41,7 +41,7 @@ using Unitful 9.999999999999998, 10.000000000000002 ] - @test isapprox(res, flt(x)) + @test isapprox(res, flt(x), rtol=1e-6) end @testset "Test ModifiedSincFilter" begin @@ -81,7 +81,7 @@ end 9.889696246825226, 9.889696246825226 ] - @test isapprox(res, flt(x)) + @test isapprox(res, flt(x); rtol=1e-6) end @testset "Test WhittakerHendersonFilter" begin @@ -121,5 +121,5 @@ end 9.987360766030491, 10.0277381858554 ] - @test isapprox(res, flt(x)) + @test isapprox(res, flt(x); rtol=1e-6) end \ No newline at end of file