Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Correct and unfudge a test for old char range syntax.
  • Loading branch information
jnthn committed Nov 20, 2011
1 parent d957740 commit 6242705
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions S05-metasyntax/charset.t
Expand Up @@ -64,10 +64,9 @@ eval_dies_ok( "'RT 71702' ~~ /<[d..b]>? RT/",
ok 'b' ~~ /<[. .. b]>/, 'weird char class matches at least its end point';

# RT #69682
#?rakudo skip 'nom regression'
#?niecza skip 'Unsupported use of - as character range; in Perl 6 please use ..'
{
eval "/<[a-z]>/";
try { eval "/<[a-z]>/"; }
ok ~$! ~~ / 'Unsupported use of - as character range; in Perl 6 please use ..'/,
"STD error message for - as character range";
}
Expand Down

0 comments on commit 6242705

Please sign in to comment.