commit | 8f0a4d67143ccdef0b5a6ac99fb9b680c3a2f69c | [log] [tgz] |
---|---|---|
author | Behdad Esfahbod <behdad@behdad.org> | Thu Apr 23 14:32:33 2015 -0700 |
committer | Behdad Esfahbod <behdad@behdad.org> | Thu Apr 23 14:32:33 2015 -0700 |
tree | 92d7335319b4bd842a44ace6e9a75ea7ead34784 | |
parent | 39851ce84efd30f6d0570324ff8f3808a01b813b [diff] |
[test] Ignor 'n' and 'i' in hb-unicode-encode Allows accepting uniXXXX format.
diff --git a/test/shaping/hb_test_tools.py b/test/shaping/hb_test_tools.py index 4e76d41..ba4a8bb 100644 --- a/test/shaping/hb_test_tools.py +++ b/test/shaping/hb_test_tools.py
@@ -414,7 +414,7 @@ @staticmethod def parse (s): s = re.sub (r"0[xX]", " ", s) - s = re.sub (r"[<+>,;&#\\xXuU\n ]", " ", s) + s = re.sub (r"[<+>,;&#\\xXuUnNiI\n ]", " ", s) return [int (x, 16) for x in s.split ()] @staticmethod