diff --git a/test/formats/test_aac.py b/test/formats/test_aac.py index 6328e634b..bfc4326b3 100644 --- a/test/formats/test_aac.py +++ b/test/formats/test_aac.py @@ -1,4 +1,5 @@ from .common import CommonTests +from .test_apev2 import CommonApeTests class AACTest(CommonTests.SimpleFormatsTestCase): @@ -12,6 +13,13 @@ class AACTest(CommonTests.SimpleFormatsTestCase): unexpected_info = ['~video'] -class AACWithAPETest(CommonTests.TagFormatsTestCase): +class AACWithAPETest(CommonApeTests.ApeTestCase): testfile = 'test-apev2.aac' supports_ratings = False + expected_info = { + 'length': 120, + '~channels': '2', + '~sample_rate': '44100', + '~bitrate': '123.824', + } + unexpected_info = ['~video']