From 6780446f3c6ace7cfbeafdf0b9145ee2fc7b590a Mon Sep 17 00:00:00 2001 From: John Glover Date: Sun, 29 Jul 2012 20:39:06 +0100 Subject: [peak_detection] Make PeakDetection.find_peaks return 1 frame per hop size (zero pad frames at the end of the signal if necessary). --- tests/test_synthesis.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'tests/test_synthesis.py') 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() -- cgit v1.2.3