From: Amaury Forgeot d'Arc Date: Wed, 18 Aug 2010 21:12:52 +0000 (+0000) Subject: Fix stupid typo in test. X-Git-Tag: v3.2a2~224 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=56ab01b66aaee7495615beecd90438fe9ed99615;p=thirdparty%2FPython%2Fcpython.git Fix stupid typo in test. --- diff --git a/Lib/test/test_unicodedata.py b/Lib/test/test_unicodedata.py index bfbb0aa2d645..45250d13dbf5 100644 --- a/Lib/test/test_unicodedata.py +++ b/Lib/test/test_unicodedata.py @@ -297,8 +297,8 @@ class UnicodeMiscTest(UnicodeDatabaseTest): def test_UCS4(self): # unicodedata should work with code points outside the BMP # even on a narrow Unicode build - self.assertEqual(self.db.category(u"\U0001012A"), "No") - self.assertEqual(self.db.numeric(u"\U0001012A"), 9000) + self.assertEqual(self.db.category("\U0001012A"), "No") + self.assertEqual(self.db.numeric("\U0001012A"), 9000) def test_main(): test.support.run_unittest(