diff options
Diffstat (limited to 'tests/test_peak_detection.cpp')
-rw-r--r-- | tests/test_peak_detection.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_peak_detection.cpp b/tests/test_peak_detection.cpp index e0eba9e..5aeca75 100644 --- a/tests/test_peak_detection.cpp +++ b/tests/test_peak_detection.cpp @@ -21,8 +21,8 @@ void TestMQPeakDetection::test_find_peaks_in_frame_basic() { _pd.frame_size(frame_size); Frame f = Frame(frame_size, true); - Peaks p = _pd.find_peaks_in_frame(&f); - CPPUNIT_ASSERT(p.size() == 0); + _pd.find_peaks_in_frame(&f); + CPPUNIT_ASSERT(f.num_peaks() == 0); } void TestMQPeakDetection::test_find_peaks_basic() { @@ -112,8 +112,8 @@ void TestLorisPeakDetection::test_find_peaks_in_frame_basic() { _pd.frame_size(frame_size); Frame f = Frame(frame_size, true); - Peaks p = _pd.find_peaks_in_frame(&f); - CPPUNIT_ASSERT(p.size() == 0); + _pd.find_peaks_in_frame(&f); + CPPUNIT_ASSERT(f.num_peaks() == 0); } void TestLorisPeakDetection::test_find_peaks_basic() { |