commit | 06fdbedf81c49fd9614379ebd68d6388525bf42f | [log] [tgz] |
---|---|---|
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | Tue Dec 28 16:04:06 2010 +0000 |
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | Tue Dec 28 16:04:06 2010 +0000 |
tree | 00202b1f2e9c64535d641b1840c16efed0df0c5f | |
parent | dce6cf353cd631629fd204f0eb75c3cec8e8d367 [diff] [blame] |
fixed issue 10254 test
diff --git a/Lib/test/test_unicodedata.py b/Lib/test/test_unicodedata.py index 892138b..c30ecf4 100644 --- a/Lib/test/test_unicodedata.py +++ b/Lib/test/test_unicodedata.py
@@ -200,8 +200,8 @@ def test_issue10254(self): # Crash reported in #10254 - a = u'C\u0338' * 20 + 'C\u0327' - b = u'C\u0338' * 20 + '\xC7' + a = u'C\u0338' * 20 + u'C\u0327' + b = u'C\u0338' * 20 + u'\xC7' self.assertEqual(self.db.normalize('NFC', a), b) def test_east_asian_width(self):