summaryrefslogtreecommitdiff
path: root/t/op/lc.t
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-10-23 16:30:00 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-10-23 16:30:00 +0000
commit7e965bc58989a71d513c78f8a7f04de80370e4c0 (patch)
treeaaec0d24a4795bf559cd69cc9b4d434d9a5e9aaf /t/op/lc.t
parenta14267ca34b74b3e4488c689cfa42d6542e2dd54 (diff)
downloadperl-7e965bc58989a71d513c78f8a7f04de80370e4c0.tar.gz
Small test nits.
p4raw-id: //depot/perl@12606
Diffstat (limited to 't/op/lc.t')
-rw-r--r--t/op/lc.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/op/lc.t b/t/op/lc.t
index 4eed2acc00..b0d0aa0f31 100644
--- a/t/op/lc.t
+++ b/t/op/lc.t
@@ -49,7 +49,7 @@ ok(uc($b) eq "HELLO\.\* WORLD", 'uc');
ok(lc($b) eq "hello\.\* world", 'lc');
# \x{100} is LATIN CAPITAL LETTER A WITH MACRON; its bijective lowercase is
-# \x{100}, LATIN SMALL LETTER A WITH MACRON.
+# \x{101}, LATIN SMALL LETTER A WITH MACRON.
$a = "\x{100}\x{101}\x{41}\x{61}";
$b = "\x{101}\x{100}\x{61}\x{41}";
@@ -82,7 +82,7 @@ ok(lc($b) eq "\x{101}\x{101}\x{61}\x{61}", 'lc');
# \x{149} is LATIN SMALL LETTER N PRECEDED BY APOSTROPHE, its uppercase is
# \x{2BC}\x{E4} or MODIFIER LETTER APOSTROPHE and N.
-ok("\U\x{DF}ab\x{149}cd" eq "\x{53}\x{53}AB\x{2BC}\x{4E}CD",
+ok("\U\x{DF}ab\x{149}cd" eq "SSAB\x{2BC}NCD",
"multicharacter uppercase");
# The \x{DF} is its own lowercase, ditto for \x{149}.