summaryrefslogtreecommitdiff
path: root/tests/test_synthesis.py
diff options
context:
space:
mode:
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()