From 811e1579a5280c7b976c2b1098dc5fd65adbf3db Mon Sep 17 00:00:00 2001 From: Martin Holters Date: Mon, 18 Nov 2024 08:54:02 +0100 Subject: [PATCH] Use `@test_deprecated` for testing the method deprecated in #580 (#587) This silences the warning emitted by tests. --- test/util.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/util.jl b/test/util.jl index 2403f5782..f613e891e 100644 --- a/test/util.jl +++ b/test/util.jl @@ -57,7 +57,7 @@ end @test nextfastfft(65) == 70 @test nextfastfft(127) == 128 @test nextfastfft((64,65,127)) == (64,70,128) - @test nextfastfft(64,65,127) == nextfastfft((64,65,127)) + @test @test_deprecated(nextfastfft(64,65,127)) == nextfastfft.((64,65,127)) end ## COMMON DSP TOOLS