summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_wave.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-11-09 21:09:44 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-11-09 21:09:44 (GMT)
commitc47d723eb017636aea8504861b4465067aabd9d6 (patch)
treeecdd30276007f1affa93ea0aee1c9397434001c7 /Lib/test/test_wave.py
parentf87854e7bfe3ef18469909ba968e3474fe31646d (diff)
downloadcpython-c47d723eb017636aea8504861b4465067aabd9d6.zip
cpython-c47d723eb017636aea8504861b4465067aabd9d6.tar.gz
cpython-c47d723eb017636aea8504861b4465067aabd9d6.tar.bz2
Issue #1575020: Fixed support of 24-bit wave files on big-endian platforms.
Diffstat (limited to 'Lib/test/test_wave.py')
-rw-r--r--Lib/test/test_wave.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_wave.py b/Lib/test/test_wave.py
index 5b48cef..0dd17c8 100644
--- a/Lib/test/test_wave.py
+++ b/Lib/test/test_wave.py
@@ -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):