Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
apmypb committed Sep 9, 2024
1 parent 070700b commit 47421cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test_alternative_filters.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -121,5 +121,5 @@ end
9.987360766030491,
10.0277381858554
]
@test isapprox(res, flt(x))
@test isapprox(res, flt(x); rtol=1e-6)
end

0 comments on commit 47421cb

Please sign in to comment.