Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix copy-n-pasto
  • Loading branch information
lizmat committed Apr 17, 2015
1 parent 47681bd commit aee9f9e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions S15-unicode-information/unimatch-general.t
Expand Up @@ -20,15 +20,15 @@ nok unimatch(0x3a, 'Nd'), "0x3a is not Nd";
ok unimatch('β…“', 'No'), "'β…“' is No";
nok unimatch('β…“', 'Nd'), "'β…“' is not Nd";

nok 0x29.uniname('Nd'), "0x29 is not Nd";
ok 0x30.uniname('Nd'), "0x30 is Nd";
ok '0'.uniname('Nd'), "'0' is Nd";
ok 0x39.uniname('Nd'), "0x39 is Nd";
ok '9'.uniname('Nd'), "'9' is Nd";
nok 0x3a.uniname('Nd'), "0x3a is not Nd";
nok 0x29.unimatch('Nd'), "0x29 is not Nd";
ok 0x30.unimatch('Nd'), "0x30 is Nd";
ok '0'.unimatch('Nd'), "'0' is Nd";
ok 0x39.unimatch('Nd'), "0x39 is Nd";
ok '9'.unimatch('Nd'), "'9' is Nd";
nok 0x3a.unimatch('Nd'), "0x3a is not Nd";

ok 'β…“'.uniname('No'), "'β…“' is No";
nok 'β…“'.uniname('Nd'), "'β…“' is not Nd";
ok 'β…“'.unimatch('No'), "'β…“' is No";
nok 'β…“'.unimatch('Nd'), "'β…“' is not Nd";

ok unimatch("\c[AEGEAN NUMBER NINETY THOUSAND]", 'No'), "AEGEAN NUMBER NINETY THOUSAND is No";
ok unimatch("\c[MATHEMATICAL MONOSPACE DIGIT ZERO]", 'Nd'), "MATHEMATICAL MONOSPACE DIGIT ZERO is Nd";
Expand Down

0 comments on commit aee9f9e

Please sign in to comment.