jiaaro / pydub

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

Fix test assertions #769

Open sirfredrick opened 9 months ago

sirfredrick commented 9 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.