summaryrefslogtreecommitdiff
path: root/tests/test_base.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_base.py')
-rw-r--r--tests/test_base.py4
1 files changed, 4 insertions, 0 deletions
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