summaryrefslogtreecommitdiff
path: root/Lib/test/test_unicodedata.py
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2010-08-18 21:12:52 +0000
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2010-08-18 21:12:52 +0000
commit3420e29bc7bb4d3c8602a0091be4c0b1bfeb8d5f (patch)
treef3053e16b14d959e0cfba4632603a0535d2cb87a /Lib/test/test_unicodedata.py
parentd101fdfadb554c63c58c2e2e6c8f280d43434d16 (diff)
downloadcpython-3420e29bc7bb4d3c8602a0091be4c0b1bfeb8d5f.tar.gz
Fix stupid typo in test.
Diffstat (limited to 'Lib/test/test_unicodedata.py')
-rw-r--r--Lib/test/test_unicodedata.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_unicodedata.py b/Lib/test/test_unicodedata.py
index bfbb0aa2d6..45250d13db 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(