Replace deprecated unittest method names with the correct ones

This commit is contained in:
JoeLametta
2018-05-02 08:05:00 +00:00
parent 44ece38740
commit 5f75d41c7b
17 changed files with 248 additions and 248 deletions

View File

@@ -11,4 +11,4 @@ class PeakLevelTestCase(common.TestCase):
self.path = os.path.join(os.path.dirname(__file__), 'track.flac')
def testParse(self):
self.assertEquals(26215, sox.peak_level(self.path))
self.assertEqual(26215, sox.peak_level(self.path))