summaryrefslogtreecommitdiff
path: root/tests/test_synthesis.py
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2012-07-29 20:39:06 +0100
committerJohn Glover <j@johnglover.net>2012-07-29 20:39:06 +0100
commit6780446f3c6ace7cfbeafdf0b9145ee2fc7b590a (patch)
treeb24947176270d31411bf135ca94aefb0e60edaeb /tests/test_synthesis.py
parent4e56550800e95d8a31531045ddab3eb5884da62a (diff)
downloadsimpl-6780446f3c6ace7cfbeafdf0b9145ee2fc7b590a.tar.gz
simpl-6780446f3c6ace7cfbeafdf0b9145ee2fc7b590a.tar.bz2
simpl-6780446f3c6ace7cfbeafdf0b9145ee2fc7b590a.zip
[peak_detection] Make PeakDetection.find_peaks
return 1 frame per hop size (zero pad frames at the end of the signal if necessary).
Diffstat (limited to 'tests/test_synthesis.py')
-rw-r--r--tests/test_synthesis.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/test_synthesis.py b/tests/test_synthesis.py
index 2e620ea..aed6556 100644
--- a/tests/test_synthesis.py
+++ b/tests/test_synthesis.py
@@ -49,7 +49,8 @@ class TestSynthesis(object):
s.hop_size = hop_size
synth_audio = s.synth(frames)
- assert len(synth_audio) == len(self.audio)
+ assert len(synth_audio) == len(self.audio),\
+ (len(synth_audio), len(self.audio))
class TestSMSSynthesis(object):
@@ -71,7 +72,8 @@ class TestSMSSynthesis(object):
s.hop_size = hop_size
synth_audio = s.synth(frames)
- assert len(synth_audio) == len(self.audio)
+ assert len(synth_audio) == len(self.audio),\
+ (len(synth_audio), len(self.audio))
def test_harmonic_synthesis_ifft(self):
pd = SMSPeakDetection()