Add more tests to unicodedata with large code points
(the other functions where not affected by the recent change)
diff --git a/Lib/test/test_unicodedata.py b/Lib/test/test_unicodedata.py
index 45250d1..d7a1eca 100644
--- a/Lib/test/test_unicodedata.py
+++ b/Lib/test/test_unicodedata.py
@@ -299,6 +299,8 @@
# even on a narrow Unicode build
self.assertEqual(self.db.category("\U0001012A"), "No")
self.assertEqual(self.db.numeric("\U0001012A"), 9000)
+ self.assertEqual(self.db.decimal("\U0001D7FD"), 7)
+ self.assertEqual(self.db.digit("\U0001D7FD"), 7)
def test_main():
test.support.run_unittest(