Ignore:
Timestamp:
Nov 2, 2018, 10:09:36 PM (5 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/timestretch, fix/ffmpeg5, master
Children:
7fd92ca
Parents:
67024ff
Message:

[tests] [py27] make sure all classes are old-school 'new-style'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/tests/test_source.py

    r67024ff r8607a74  
    2424_debug = False
    2525
    26 class Test_aubio_source_test_case:
     26class Test_aubio_source_test_case(object):
    2727
    2828    @parametrize('filename', list_of_sounds)
     
    4141        f.close()
    4242
    43 class Test_aubio_source_read:
     43class Test_aubio_source_read(object):
    4444
    4545    def read_from_source(self, f):
     
    119119
    120120
    121 class Test_aubio_source_wrong_params:
     121class Test_aubio_source_wrong_params(object):
    122122
    123123    def test_wrong_file(self):
     
    172172        return total_frames
    173173
    174 class Test_aubio_source_with:
     174class Test_aubio_source_with(object):
    175175
    176176    @parametrize('filename', list_of_sounds)
Note: See TracChangeset for help on using the changeset viewer.