Fix stupid typo in test.

This commit is contained in:
Amaury Forgeot d'Arc 2010-08-18 21:12:52 +00:00
parent 74a833fa96
commit 56ab01b66a
1 changed files with 2 additions and 2 deletions

View File

@ -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(