From 249155fa90c979958611bc395049554c491e76c5 Mon Sep 17 00:00:00 2001 From: Martin Holters Date: Thu, 7 Nov 2024 11:27:05 +0100 Subject: [PATCH] Test deprecated `conv` method --- test/dsp.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/test/dsp.jl b/test/dsp.jl index 94d838d4b..cf6163e6c 100644 --- a/test/dsp.jl +++ b/test/dsp.jl @@ -204,6 +204,7 @@ end fv = convert(Array{Float64}, v) fA = convert(Array{Float64}, A) fexp = convert(Array{Float64}, exp) + @test @test_deprecated(conv(fu, fv, fA)) ≈ fexp @test conv(fu, transpose(fv), fA) ≈ fexp end