summaryrefslogtreecommitdiff
path: root/tests/test_peak_detection.cpp
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2013-06-07 13:00:55 +0200
committerJohn Glover <j@johnglover.net>2013-06-07 13:00:55 +0200
commitd60bbc935a1c7137c766792bf569ea7d6800fba9 (patch)
tree2247eb781e2b2f28a1f13253517b2c5eed11a3ae /tests/test_peak_detection.cpp
parentd91fc3a5b7b9d7a4ca85882b029fefe2c8daa156 (diff)
downloadsimpl-d60bbc935a1c7137c766792bf569ea7d6800fba9.tar.gz
simpl-d60bbc935a1c7137c766792bf569ea7d6800fba9.tar.bz2
simpl-d60bbc935a1c7137c766792bf569ea7d6800fba9.zip
Fix memory leaks in peak detection processes
Diffstat (limited to 'tests/test_peak_detection.cpp')
-rw-r--r--tests/test_peak_detection.cpp8
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() {