From 68770f85e33be2a31f2c85fbd8ebe201f15dff50 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Mon, 10 Nov 2014 10:06:21 -0800 Subject: [PATCH] Update ALAC tests for Mutagen 1.26 The metadata extraction is now more accurate for ALACs, but we lost the ability to distinguish them from AAC. --- test/test_mediafile.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/test_mediafile.py b/test/test_mediafile.py index 71d0d0971..b27252eb0 100644 --- a/test/test_mediafile.py +++ b/test/test_mediafile.py @@ -729,11 +729,11 @@ class AlacTest(ReadWriteTestBase, unittest.TestCase): extension = 'alac.m4a' audio_properties = { 'length': 1.0, - 'bitrate': 55072, - 'format': 'ALAC', - 'samplerate': 0, - 'bitdepth': 0, - 'channels': 0, + 'bitrate': 21830, + # 'format': 'ALAC', + 'samplerate': 44100, + 'bitdepth': 16, + 'channels': 1, }