Changeset 01e7be0 for python/tests
- Timestamp:
- Mar 22, 2013, 6:33:35 PM (12 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 86ad546
- Parents:
- e6cde32
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/tests/test_source.py
re6cde32 r01e7be0 55 55 def test_wrong_hop_size(self): 56 56 for p in list_of_sounds: 57 f = source(p, 0, -1) 58 print f.hop_size 57 try: 58 f = source(p, 0, -1) 59 except Exception, e: 60 print e 61 else: 62 self.fail('does not fail with wrong hop_size %d' % f.hop_size) 59 63 60 64 def test_zero_hop_size(self):
Note: See TracChangeset
for help on using the changeset viewer.