From 90509d9c9c7a0716540d069f15acb41e4cde131c Mon Sep 17 00:00:00 2001 From: John Glover Date: Wed, 12 Jun 2013 23:08:28 +0200 Subject: Make add_peak, add_partial and partial methods on Frame objects take Peak parameters instead of Peak object pointers. Update Python objects to return void from find_peaks_in_frame and update_partials. --- tests/test_base.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests/test_base.py') diff --git a/tests/test_base.py b/tests/test_base.py index 1a231f5..667d928 100644 --- a/tests/test_base.py +++ b/tests/test_base.py @@ -48,6 +48,10 @@ class TestFrame(object): assert_almost_equals(f.peaks[0].amplitude, p.amplitude, float_precision) + assert_almost_equals(f.peaks[0].frequency, p.frequency, + float_precision) + assert_almost_equals(f.peaks[0].phase, p.phase, + float_precision) f.clear() assert len(f.peaks) == 0 -- cgit v1.2.3