Commit 56ab01b6 authored by Amaury Forgeot d'Arc's avatar Amaury Forgeot d'Arc

Fix stupid typo in test.

parent 74a833fa
......@@ -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(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment