From 727ba78698d29eaa71dbad60efd3e14f9f1d1c37 Mon Sep 17 00:00:00 2001 From: Mikhail Baranov Date: Wed, 3 Apr 2024 23:30:55 +0200 Subject: [PATCH] Fix test-audio --- src/tests/roc_audio/test_freq_estimator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/roc_audio/test_freq_estimator.cpp b/src/tests/roc_audio/test_freq_estimator.cpp index 39e76dd99..26362c9c8 100644 --- a/src/tests/roc_audio/test_freq_estimator.cpp +++ b/src/tests/roc_audio/test_freq_estimator.cpp @@ -65,7 +65,7 @@ TEST(freq_estimator, small_queue_size) { do { fe.update(Target / 2); - } while (fe.freq_coeff() > 0.99f); + } while (fe.freq_coeff() > 0.997f); } }