diff options
-rw-r--r-- | Lib/test/test_unicodedata.py | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ class UnicodeFunctionsTest(UnicodeDatabaseTest): 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): |