Skip to content

Commit

Permalink
[perl #117355] unTODO the [lu]cfirst under bytes tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tonycoz committed Aug 12, 2013
1 parent 93e088e commit ae5c28e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/bytes.t
Expand Up @@ -62,7 +62,6 @@ utf8::encode(my $c2_utf8 = $c2);
# and if there's other tests for lc/uc under bytes I didn't find them
is(lc($c2), $c2_utf8, "lc under use bytes returns bytes");
is(uc($c2), $c2_utf8, "uc under use bytes returns bytes");
local $TODO = "[perl #117355] [lu]cfirst don't respect 'use bytes'";
is(lcfirst($c2), $c2_utf8, "lcfirst under use bytes returns bytes");
is(ucfirst($c2), $c2_utf8, "unfirst under use bytes returns bytes");
}
Expand Down

0 comments on commit ae5c28e

Please sign in to comment.