From 4f3c46627fb6d997ea4d2fb9411c2a44ddfe0f61 Mon Sep 17 00:00:00 2001 From: Martin Holters Date: Thu, 14 Nov 2024 11:48:09 +0100 Subject: [PATCH] Use `@test_deprecated` for testing the method deprecated in #580 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