jiaaro / pydub

Manipulate audio with a simple and easy high level interface
http://pydub.com
MIT License
8.98k stars 1.05k forks source link

Fix test assertions #769

Open sirfredrick opened 11 months ago

sirfredrick commented 11 months ago

assertEquals() was a deprecated alias for assertEqual() and has been removed in Python 3.12. See more here. This pull request replaces all assertEquals() calls with assertEqual() calls. This allows the tests to be run on Python 3.12.