[Python-checkins] r52527 - python/trunk/Lib/test/test_codecs.py

georg.brandl python-checkins at python.org
Sun Oct 29 10:32:17 CET 2006


Author: georg.brandl
Date: Sun Oct 29 10:32:16 2006
New Revision: 52527

Modified:
   python/trunk/Lib/test/test_codecs.py
Log:
Fix the new EncodedFile test to work with big endian platforms.


Modified: python/trunk/Lib/test/test_codecs.py
==============================================================================
--- python/trunk/Lib/test/test_codecs.py	(original)
+++ python/trunk/Lib/test/test_codecs.py	Sun Oct 29 10:32:16 2006
@@ -914,8 +914,8 @@
     
     def test_basic(self):
         f = StringIO.StringIO('\xed\x95\x9c\n\xea\xb8\x80')
-        ef = codecs.EncodedFile(f, 'utf-16', 'utf-8')
-        self.assertEquals(ef.read(), '\xff\xfe\\\xd5\n\x00\x00\xae')
+        ef = codecs.EncodedFile(f, 'utf-16-le', 'utf-8')
+        self.assertEquals(ef.read(), '\\\xd5\n\x00\x00\xae')
 
         f = StringIO.StringIO()
         ef = codecs.EncodedFile(f, 'utf-8', 'latin1')


More information about the Python-checkins mailing list