From 0bf67b23336acc238580d67cd736390b1aaac04e Mon Sep 17 00:00:00 2001 From: Christophe Favergeon Date: Tue, 31 Aug 2021 07:20:26 +0200 Subject: [PATCH] CMSIS-DSP: Correcting issue 1289 A test check was disabled by mistake. --- Testing/Source/Tests/DECIMF32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Testing/Source/Tests/DECIMF32.cpp b/Testing/Source/Tests/DECIMF32.cpp index 484d721d..22187328 100755 --- a/Testing/Source/Tests/DECIMF32.cpp +++ b/Testing/Source/Tests/DECIMF32.cpp @@ -118,7 +118,7 @@ a double precision computation. ASSERT_EMPTY_TAIL(output); - //ASSERT_SNR(output,ref,(float32_t)SNR_THRESHOLD); + ASSERT_SNR(output,ref,(float32_t)SNR_THRESHOLD); ASSERT_REL_ERROR(output,ref,REL_ERROR);