We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47dadaf commit 273ad65Copy full SHA for 273ad65
Lib/test/test_unicodedata.py
@@ -232,7 +232,6 @@ def test_issue10254(self):
232
b = 'C\u0338' * 20 + '\xC7'
233
self.assertEqual(self.db.normalize('NFC', a), b)
234
235
- @unittest.expectedFailure # TODO: RUSTPYTHON; ? +
236
def test_issue29456(self):
237
# Fix #29456
238
u1176_str_a = '\u1100\u1176\u11a8'
@@ -389,6 +388,7 @@ def unistr(data):
389
388
data = [int(x, 16) for x in data.split(" ")]
390
return "".join([chr(x) for x in data])
391
+ @unittest.expectedFailure # TODO: RUSTPYTHON; AssertionError: False is not true : 13055
392
@requires_resource('network')
393
@requires_resource('cpu')
394
def test_normalization(self):
0 commit comments