Skip to content

Commit e9d171f

Browse files
committed
remove lcfirst reference, unfudge
1 parent 012b339 commit e9d171f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

S32-str/uc.t

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use v6;
22

33
use Test;
44

5-
plan 18;
5+
plan 17;
66

77
# L<S32::Str/"Str"/=item uc>
88

@@ -49,13 +49,12 @@ is ~(0.uc), ~0, '.uc on Int';
4949
is ~(0.tc), ~0, '.tc on Int';
5050
is ~(0.lc), ~0, '.lc on Int';
5151

52-
#?DOES 4
53-
#?rakudo skip 'but RoleName'
52+
#?DOES 3
5453
{
5554
role A {
5655
has $.thing = 3;
5756
}
58-
for <uc lc tc lcfirst> -> $meth {
57+
for <uc lc tc> -> $meth {
5958
my $str = "('Nothing much' but A).$meth eq 'Nothing much'.$meth";
6059
ok EVAL($str), $str;
6160
}

0 commit comments

Comments
 (0)