Issue #1575020: Fixed support of 24-bit wave files on big-endian platforms.

This commit is contained in:
Serhiy Storchaka 2013-11-09 23:12:06 +02:00
parent affb9b255b
commit a44372fd0b
3 changed files with 15 additions and 11 deletions

View file

@ -49,9 +49,6 @@ class WavePCM16Test(audiotests.AudioWriteTests,
frames = audiotests.byteswap2(frames)
@unittest.skipIf(sys.byteorder == 'big',
'24-bit wave files are supported only on little-endian '
'platforms')
class WavePCM24Test(audiotests.AudioWriteTests,
audiotests.AudioTestsWithSourceFile,
unittest.TestCase):