From: Walter Dörwald Date: Thu, 17 May 2007 18:35:58 +0000 (+0000) Subject: Fix tests for string encodings. X-Git-Tag: v3.0a1~937 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=583118a535c944002f578ae1449b1c29e2ee3e28;p=thirdparty%2FPython%2Fcpython.git Fix tests for string encodings. --- diff --git a/Lib/test/test_codecs.py b/Lib/test/test_codecs.py index 03be34c7e1c0..dba903373270 100644 --- a/Lib/test/test_codecs.py +++ b/Lib/test/test_codecs.py @@ -1108,7 +1108,7 @@ all_unicode_encodings = [ if hasattr(codecs, "mbcs_encode"): all_unicode_encodings.append("mbcs") -# The following encodings work only with str, not unicode +# The following encodings work only with str8, not str all_string_encodings = [ "quopri_codec", "string_escape", @@ -1289,7 +1289,7 @@ class BasicUnicodeTest(unittest.TestCase, MixInCheckStateHandling): class BasicStrTest(unittest.TestCase): def test_basics(self): - s = "abc123" + s = str8("abc123") for encoding in all_string_encodings: (encoded, size) = codecs.getencoder(encoding)(s) self.assertEqual(size, len(s))