Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/tests/test_source.py

    re1bfde5 r01e7be0  
    5555    def test_wrong_hop_size(self):
    5656        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)
    5963
    6064    def test_zero_hop_size(self):
Note: See TracChangeset for help on using the changeset viewer.