Skip to content

Commit

Permalink
Bring a test in line with the spec.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnthn committed Nov 18, 2011
1 parent 007a6b7 commit 32590b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S05-match/non-capturing.t
Expand Up @@ -19,7 +19,7 @@ ok($str ~~ m{a(b+)c}, 'Matched 1');
ok($/, 'Saved 1');
is($/, $str, 'Grabbed all 1');
#?niecza todo
is($/[0], substr($str,1,-1), 'Correctly captured 1');
is($/[0], substr($str,1,*-1), 'Correctly captured 1');

ok($str ~~ m{a[b+]c}, 'Matched 2');
ok($/, 'Saved 2');
Expand Down

0 comments on commit 32590b6

Please sign in to comment.