From 06fdbedf81c49fd9614379ebd68d6388525bf42f Mon Sep 17 00:00:00 2001 From: Alexander Belopolsky Date: Tue, 28 Dec 2010 16:04:06 +0000 Subject: [PATCH] fixed issue 10254 test --- Lib/test/test_unicodedata.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_unicodedata.py b/Lib/test/test_unicodedata.py index 892138be4f..c30ecf4c5b 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): -- 2.50.1