[Python-checkins] r78649 - python/branches/py3k/Lib/test/test_unicodedata.py

victor.stinner python-checkins at python.org
Thu Mar 4 13:47:32 CET 2010


Author: victor.stinner
Date: Thu Mar  4 13:47:32 2010
New Revision: 78649

Log:
oops, fix the test of my previous commit about unicodedata and PR #29 (r78647)


Modified:
   python/branches/py3k/Lib/test/test_unicodedata.py

Modified: python/branches/py3k/Lib/test/test_unicodedata.py
==============================================================================
--- python/branches/py3k/Lib/test/test_unicodedata.py	(original)
+++ python/branches/py3k/Lib/test/test_unicodedata.py	Thu Mar  4 13:47:32 2010
@@ -189,7 +189,7 @@
 
     def test_pr29(self):
         # http://www.unicode.org/review/pr-29.html
-        for text in (u"\u0b47\u0300\u0b3e", u"\u1100\u0300\u1161"):
+        for text in ("\u0b47\u0300\u0b3e", "\u1100\u0300\u1161"):
             self.assertEqual(self.db.normalize('NFC', text), text)
 
     def test_east_asian_width(self):


More information about the Python-checkins mailing list