Changeset cefa29d for python/tests/test_note2midi.py
- Timestamp:
- Oct 30, 2018, 10:24:08 AM (6 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
- Children:
- 4bc10e2
- Parents:
- 7be77bb (diff), 27ed546 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/tests/test_note2midi.py
r7be77bb rcefa29d 4 4 from __future__ import unicode_literals 5 5 6 from aubio import note2midi, freq2note, note2freq 6 from aubio import note2midi, freq2note, note2freq, float_type 7 7 from nose2.tools import params 8 8 import unittest … … 128 128 def test_note2freq_under(self): 129 129 " make sure note2freq(A4) == 440" 130 self.assertEqual(440, note2freq("A4")) 130 if float_type == 'float32': 131 self.assertEqual(440, note2freq("A4")) 132 else: 133 self.assertLess(abs(note2freq("A4")-440), 1.e-12) 131 134 132 135 if __name__ == '__main__':
Note: See TracChangeset
for help on using the changeset viewer.